diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 18:54:38 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 18:54:38 +0300 |
commit | 41c9baf93b1603e7df1befd3a15da96cde158e3c (patch) | |
tree | 25f32304a415ef8371134e8c9e342665fb96e815 | |
parent | 9b4e3b506a68bf91c041d7c64bdad0a11a82f59a (diff) | |
download | obs-somafm_current_track-master.tar.xz obs-somafm_current_track-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..14811dd --- /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/obs-somafm_current_track.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |