From cdc629799786d1022621af2a2739c5f381e4ee24 Mon Sep 17 00:00:00 2001 From: Hobbabobba Date: Tue, 16 Sep 2025 22:50:10 +0200 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/mirror.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/mirror.yml diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml deleted file mode 100644 index 1491a2f..0000000 --- a/.github/workflows/mirror.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Mirror to Gitea -on: - push: - branches: - - main - -jobs: - mirror: - runs-on: ubuntu-latest - steps: - - name: Remove old repo folder - run: rm -rf repo - - - name: Clone repo as mirror - run: git clone --mirror https://github.com/Hobbabobba/keyserver.git repo - - - name: Push to Gitea - env: - GITEA_USER: ${{ secrets.GITEA_USER }} - GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} - run: | - cd repo - git remote set-url origin https://${GITEA_USER}:${GITEA_TOKEN}@git.nauheimtech.de/StefanMewes/keyserver.git - git push --mirror