diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 19:04:10 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 19:04:10 +0300 |
commit | 3297203791b213ba9b14019e7a857dd442462041 (patch) | |
tree | ed78bc949a0301653bf4a3f535c10eb02b3d22f9 | |
parent | 90e486a9058ec55bb4e4c1c6476dfb9ced4ccaac (diff) | |
download | docker-meteor-master.tar.xz docker-meteor-master.zip |
-rw-r--r-- | .github/workflows/main.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..f92348c --- /dev/null +++ b/.github/workflows/main.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/docker-meteor.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |