From 800bd4b5c610b2ca4456e60beb35d880bf99e3df Mon Sep 17 00:00:00 2001 From: Tracewebstudio Dev Date: Sun, 19 Apr 2026 15:32:15 +0200 Subject: [PATCH] ci: remove sync-to-gitea workflow (not needed) --- .github/workflows/sync-to-gitea.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/sync-to-gitea.yml diff --git a/.github/workflows/sync-to-gitea.yml b/.github/workflows/sync-to-gitea.yml deleted file mode 100644 index 3a858e4..0000000 --- a/.github/workflows/sync-to-gitea.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: sync-to-gitea - -on: - push: - branches: - - main - -jobs: - sync: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Push to Gitea - env: - GITEA_USERNAME: ${{ secrets.GITEA_USERNAME }} - GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} - run: | - echo "Syncing to Gitea: https://ci.nxtgauge.com/Admin/${{ github.event.repository.name }}" - echo "GitHub commit: $(git rev-parse HEAD)" - echo "Target branch: high-performance" - - git remote add gitea "https://${GITEA_USERNAME}:${GITEA_TOKEN}@ci.nxtgauge.com/Admin/${{ github.event.repository.name }}.git" - git push gitea main:high-performance --force-with-lease - - echo "Sync complete!"