diff options
author | Astound <kirito@disroot.org> | 2024-08-05 11:07:33 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-08-05 11:07:33 +0800 |
commit | 3f93f5c5e4e9c72c85d0649986f4ceff670105de (patch) | |
tree | be5db87b48495631917646ce40fd79f1e44f77c9 | |
parent | 13531a896a2e734166994eb560c8bc4c03289f40 (diff) | |
download | book-3f93f5c5e4e9c72c85d0649986f4ceff670105de.tar.lz book-3f93f5c5e4e9c72c85d0649986f4ceff670105de.tar.xz book-3f93f5c5e4e9c72c85d0649986f4ceff670105de.zip |
workflows: add git-sync
-rw-r--r-- | .gitea/workflows/git-sync.yaml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.gitea/workflows/git-sync.yaml b/.gitea/workflows/git-sync.yaml new file mode 100644 index 0000000..c8f0e6c --- /dev/null +++ b/.gitea/workflows/git-sync.yaml @@ -0,0 +1,40 @@ +name: git-sync-with-mirror + +on: + push: + branches: [ master ] + workflow_dispatch: + +jobs: + git-sync: + runs-on: ubuntu-latest + + steps: + - name: git-sync + env: + git_sync_source_repo: git@git.fridu.us:heckyel/book.git + git_sync_destination_repo: ssh://git@c.fridu.us/documentation/book.git + if: env.git_sync_source_repo && env.git_sync_destination_repo + uses: astounds/git-sync@v1 + with: + source_repo: git@git.fridu.us:heckyel/book.git + source_branch: "master" + destination_repo: ssh://git@c.fridu.us/documentation/book.git + destination_branch: "master" + source_ssh_private_key: ${{ secrets.GIT_SYNC_SOURCE_SSH_PRIVATE_KEY }} + destination_ssh_private_key: ${{ secrets.GIT_SYNC_DESTINATION_SSH_PRIVATE_KEY }} + + - name: git-sync-sourcehut + env: + git_sync_source_repo: git@git.fridu.us:heckyel/book.git + git_sync_destination_repo: git@git.sr.ht:~heckyel/book + if: env.git_sync_source_repo && env.git_sync_destination_repo + uses: astounds/git-sync@v1 + with: + source_repo: git@git.fridu.us:heckyel/book.git + source_branch: "master" + destination_repo: git@git.sr.ht:~heckyel/book + destination_branch: "master" + source_ssh_private_key: ${{ secrets.GIT_SYNC_SOURCE_SSH_PRIVATE_KEY }} + destination_ssh_private_key: ${{ secrets.GIT_SYNC_DESTINATION_SSH_PRIVATE_KEY }} + continue-on-error: true |