diff options
Diffstat (limited to '.github/workflows/mirror.yml')
-rw-r--r-- | .github/workflows/mirror.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..0c82676 --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,13 @@ +name: Mirror to ARFNET + +on: [push] + +jobs: + push-mirror: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Push to remote repo + run: git push -u https://${{secrets.MIRROR_USER}}:${{secrets.MIRROR_PASSWORD}}@git.arf20.com/arfnet2-web master |