diff options
author | valentineus <valentin@popov.link> | 2024-05-31 12:04:48 +0300 |
---|---|---|
committer | valentineus <valentin@popov.link> | 2024-05-31 12:04:48 +0300 |
commit | 7fb0f81a89979044edfb5633df2d09c164c8e2a8 (patch) | |
tree | 8d67893c7b5e30db84cc201b6230b9c07b56f1ab /.github/workflows | |
parent | 804454678d701fa5bd2ee5c1ec638454ae6d4871 (diff) | |
download | wecli-7fb0f81a89979044edfb5633df2d09c164c8e2a8.tar.xz wecli-7fb0f81a89979044edfb5633df2d09c164c8e2a8.zip |
Added mirror
FossilOrigin-Name: a1528b81d3aca5055499bddb0c28873819ccc1bb07ad9ae3a8806736aba47d98
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/mirror.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..8671263 --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,17 @@ +name: Workflow + +on: [push] + +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://git.popov.link/wecli.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |