diff options
author | Valentin Popov <valentin@popov.link> | 2025-02-01 17:12:29 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-02-01 17:12:29 +0300 |
commit | 0bba3fe744aef5335c57e94547a514a89727b077 (patch) | |
tree | 5e29c1a250cb2efbed8739044fb242f6e08791ff /.github/workflows | |
parent | f826ef31c74953a9fa0101b8b483ae4b004f2adb (diff) | |
download | popov.link-0bba3fe744aef5335c57e94547a514a89727b077.tar.xz popov.link-0bba3fe744aef5335c57e94547a514a89727b077.zip |
Updated CI parameters & Added mirror
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/mirror.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..f85936a --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,15 @@ +name: Mirror +on: [push] + +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://git.popov.link/popov.link.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |