From 3876843d806211a2583d8727548ab13db00e670a Mon Sep 17 00:00:00 2001 From: Hobbabobba Date: Tue, 16 Sep 2025 22:26:03 +0200 Subject: [PATCH] Create mirror.yml --- .github/workflows/mirror.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/mirror.yml diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..3319c05 --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,15 @@ +name: Mirror to Gitea + +on: [push] + +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Push to Gitea + run: | + git remote add gitea https://{{ secrets.GITEA_USER }}:${{ secrets.GITEA_TOKEN }}@git.nauheimtech.de/StefanMewes/keyserver.git + git push --mirror gitea