blob: 411576da3dc3a0edee2b8a9a29e7b629f343ce1e (
plain) (
tree)
|
|
name: Mirror to ARFNET
on: [push]
jobs:
push-mirror:
runs-on: ubuntu-latest
steps:
- name: Clone repo
run: git clone https://github.com/ARF20NET/arfnet2-web
- name: Push to remote repo
run: cd arfnet2-web && git push -u https://${{secrets.MIRROR_USER}}:${{secrets.MIRROR_PASSWORD}}@git.arf20.com/arfnet2-web master
|