diff options
author | Astound <kirito@disroot.org> | 2024-08-04 12:33:00 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-08-04 12:33:00 +0800 |
commit | 3879e947dc770ea1af2615d18f1e1016e38c03f2 (patch) | |
tree | 8651f46075cb1ce1da152f5f698a0965fc6cde05 /.gitea/workflows | |
parent | 1996a500fe8709b8580ecaab305888c1376cc0aa (diff) | |
download | hyperterm-3879e947dc770ea1af2615d18f1e1016e38c03f2.tar.lz hyperterm-3879e947dc770ea1af2615d18f1e1016e38c03f2.tar.xz hyperterm-3879e947dc770ea1af2615d18f1e1016e38c03f2.zip |
workflows: add git sync
Diffstat (limited to '.gitea/workflows')
-rw-r--r-- | .gitea/workflows/git-sync.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitea/workflows/git-sync.yaml b/.gitea/workflows/git-sync.yaml new file mode 100644 index 0000000..a4167e9 --- /dev/null +++ b/.gitea/workflows/git-sync.yaml @@ -0,0 +1,25 @@ +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/hyperterm.git + git_sync_destination_repo: ssh://git@c.fridu.us/software/hyperterm.git + if: env.git_sync_source_repo && env.git_sync_destination_repo + uses: wei/git-sync@v3 + with: + source_repo: git@git.fridu.us:heckyel/hyperterm.git + source_branch: "master" + destination_repo: ssh://git@c.fridu.us/software/hyperterm.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 }} |