diff options
author | arf20 <35542215+arf20@users.noreply.github.com> | 2024-01-24 00:25:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 00:25:58 +0100 |
commit | 07c8cc5c3f3615c78e9c2e0f6915cc357f8c6a41 (patch) | |
tree | d3254b4a60096218d2b2f8d015753532272e4c5a /.github | |
parent | 99c00dad9c94dbb803d404d870e41a4d75311dfb (diff) | |
download | arfnet2-web-07c8cc5c3f3615c78e9c2e0f6915cc357f8c6a41.tar.gz arfnet2-web-07c8cc5c3f3615c78e9c2e0f6915cc357f8c6a41.zip |
Fix actions dir
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mirror.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index dd23b3b..411576d 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -6,8 +6,8 @@ jobs: push-mirror: runs-on: ubuntu-latest steps: - - name: Push to remote repo - run: git clone https://github.com/ARF20NET/arfnet2-web && cd arfnet2-web + - name: Clone repo + run: git clone https://github.com/ARF20NET/arfnet2-web - name: Push to remote repo - run: git push -u https://${{secrets.MIRROR_USER}}:${{secrets.MIRROR_PASSWORD}}@git.arf20.com/arfnet2-web master + run: cd arfnet2-web && git push -u https://${{secrets.MIRROR_USER}}:${{secrets.MIRROR_PASSWORD}}@git.arf20.com/arfnet2-web master |