diff options
Diffstat (limited to '.gitea/workflows')
-rw-r--r-- | .gitea/workflows/git-sync.yaml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/.gitea/workflows/git-sync.yaml b/.gitea/workflows/git-sync.yaml index 6d85399..0dfad3f 100644 --- a/.gitea/workflows/git-sync.yaml +++ b/.gitea/workflows/git-sync.yaml @@ -15,7 +15,7 @@ jobs: git_sync_source_repo: git@git.fridu.us:heckyel/yt-local-docker.git git_sync_destination_repo: ssh://git@c.fridu.us/containers/yt-local-docker.git if: env.git_sync_source_repo && env.git_sync_destination_repo - uses: wei/git-sync@v3 + uses: astounds/git-sync@v1 with: source_repo: git@git.fridu.us:heckyel/yt-local-docker.git source_branch: "master" @@ -23,3 +23,17 @@ jobs: 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/yt-local-docker.git + git_sync_destination_repo: git@git.sr.ht:~heckyel/yt-local-docker + if: env.git_sync_source_repo && env.git_sync_destination_repo + uses: astounds/git-sync@v1 + with: + source_repo: git@git.fridu.us:heckyel/yt-local-docker.git + source_branch: "master" + destination_repo: git@git.sr.ht:~heckyel/yt-local-docker + 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 }} |