diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 19:00:11 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 19:00:11 +0300 |
commit | d74723b3138d2c5df7923a6c639167ee929e7f27 (patch) | |
tree | 34286f40c679772d8d1f559f24f9fbd11a8a7e83 /.github/workflows | |
parent | 0ce627b000a05c0fe51698d1a4ff2d6d79da10b1 (diff) | |
download | mednafen-server-d74723b3138d2c5df7923a6c639167ee929e7f27.tar.xz mednafen-server-d74723b3138d2c5df7923a6c639167ee929e7f27.zip |
Diffstat (limited to '.github/workflows')
-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..d1da516 --- /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/mednafen-server.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |