From ef5b0533e0c6a06ca13032ac3f47ac926de90a56 Mon Sep 17 00:00:00 2001 From: Alexander Renz Date: Sat, 13 Dec 2025 17:17:57 +0100 Subject: [PATCH] fix(ci): test basic step execution --- .gitea/workflows/ci.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ff4e9c9..2ed9ad2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -206,16 +206,8 @@ jobs: fetch-depth: 0 - name: Push to GitHub - env: - GITHUB_TOKEN: ${{ secrets.GITHUBMIRRORTOKEN }} run: | - echo "Starting mirror..." - if [ -z "${GITHUB_TOKEN}" ]; then - echo "ERROR: GITHUBMIRRORTOKEN secret is empty!" - exit 1 - fi - echo "Token length: ${#GITHUB_TOKEN}" - git remote add github "https://x-access-token:${GITHUB_TOKEN}@github.com/PlusOne/hmac-file-server.git" - git push --force --all github - git push --force --tags github - echo "Mirror complete!" + echo "Step is running!" + echo "Listing remotes..." + git remote -v + echo "Done listing remotes"