diff options
author | Astound <kirito@disroot.org> | 2024-08-05 08:28:49 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-08-05 08:28:49 +0800 |
commit | c44529ab76f85be3e054447a02d0f218272996e2 (patch) | |
tree | 803c7a6ccc6147a84a676b39602788b17f3e9a4f /.gitea/workflows | |
parent | b314d7aa0838d38ac3a351af495002cd349dcf19 (diff) | |
download | yt-local-docker-c44529ab76f85be3e054447a02d0f218272996e2.tar.lz yt-local-docker-c44529ab76f85be3e054447a02d0f218272996e2.tar.xz yt-local-docker-c44529ab76f85be3e054447a02d0f218272996e2.zip |
workflows: set sourcehut like mirror
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 }} |