From 1881e088d863c2373ed39d34828a7e8bbcdcd2ed Mon Sep 17 00:00:00 2001 From: Nik Afiq Date: Mon, 9 Mar 2026 23:34:57 +0900 Subject: [PATCH] Replace custom checkout logic with actions/checkout in CI workflow --- .gitea/workflows/ci.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 7f7d5ae..12cc096 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -10,13 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - run: | - if [ -d /tmp/watch-party ]; then - cd /tmp/watch-party && git fetch origin && git reset --hard origin/main - else - git clone https://gitea.home.arpa/nik/watch-party /tmp/watch-party - fi - cp -r /tmp/watch-party/. . + uses: actions/checkout@v4 - name: Write deploy key run: |