diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 18:43:45 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 18:43:45 +0300 |
commit | 3042fe88cff4c1b61dee3063d9aa7a01e2b90721 (patch) | |
tree | 38711a55bc3e9600c43558b3eaba0bab2104546f /.github/workflows | |
parent | 6feca4b65b78c674aea096906ecd7b46abebc36a (diff) | |
download | electron-hot-reload-3042fe88cff4c1b61dee3063d9aa7a01e2b90721.tar.xz electron-hot-reload-3042fe88cff4c1b61dee3063d9aa7a01e2b90721.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..1259cb8 --- /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/electron-hot-reload.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |