allow selecting a CD drive from the command line #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync mirrors | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
sync-gitlab: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Sync GitLab mirror | |
uses: yesolutions/[email protected] | |
with: | |
REMOTE: 'ssh://[email protected]/arcctgx/ARver.git' | |
GIT_SSH_PRIVATE_KEY: ${{ secrets.ARVER_SYNC_PRIVATE_SSH_KEY }} | |
GIT_SSH_NO_VERIFY_HOST: true | |
PUSH_ALL_REFS: false | |
sync-codeberg: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Sync Codeberg mirror | |
uses: yesolutions/[email protected] | |
with: | |
REMOTE: 'ssh://[email protected]/arcctgx/ARver.git' | |
GIT_SSH_PRIVATE_KEY: ${{ secrets.ARVER_SYNC_PRIVATE_SSH_KEY }} | |
GIT_SSH_NO_VERIFY_HOST: true | |
PUSH_ALL_REFS: false |