diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 18:29:06 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 18:29:06 +0300 |
commit | 3e8c96ef1a88e74d773f0d9048baf4afd02d8116 (patch) | |
tree | 90197b525233b61980529002c544b54e20a8f026 | |
parent | c3f2bef4e854c7fefa51fed860f7e2f3606d737a (diff) | |
download | nvim-config-3e8c96ef1a88e74d773f0d9048baf4afd02d8116.tar.xz nvim-config-3e8c96ef1a88e74d773f0d9048baf4afd02d8116.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..25eaa65 --- /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/nvim-config.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |