diff options
author | arf20 <35542215+arf20@users.noreply.github.com> | 2024-01-23 23:41:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 23:41:29 +0100 |
commit | ec6e91c066eb3afc9027c304c8d568156dc88a54 (patch) | |
tree | 4cfb908daf4d8af60e698b6d9262aa4930c6b43f | |
parent | a481ea5b935fd8bd08b55e0e357ced86d0085fc4 (diff) | |
download | arfnet2-web-ec6e91c066eb3afc9027c304c8d568156dc88a54.tar.gz arfnet2-web-ec6e91c066eb3afc9027c304c8d568156dc88a54.zip |
Add mirror CI workflow
Github action to push to ARFNET mirror
-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 |