committed by
GitHub
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||
name: Github to Bitbucket sync |
|||
# This action will sync the github repo with a backup bitbucket repo. |
|||
# This will allow LinuxGSM to use Bitbucket as and alternative download if github fails. |
|||
on: push |
|||
jobs: |
|||
repo-sync: |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- name: ssh |
|||
uses: webfactory/[email protected] |
|||
with: |
|||
ssh-private-key: ${{ secrets.BITBUCKET_SECRET }} |
|||
ssh_private_key: ${{ secrets.BITBUCKET_SECRET }} |
|||
|
|||
- name: repo-sync |
|||
uses: wei/git-sync@v2 |
|||
with: |
|||
source_repo: "https://github.com/GameServerManagers/Game-Server-Configs" |
|||
source_branch: "refs/heads/*" |
|||
destination_repo: "[email protected]:GameServerManagers/Game-Server-Configs.git" |
|||
destination_branch: "refs/heads/*" |
|||
ssh_private_key: ${{ secrets.BITBUCKET_SECRET }} |
Loading…
Reference in new issue