Update From Src #128680
This file contains hidden or 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: Update From Src | |
| on: | |
| workflow_dispatch: | |
| inputs: {} | |
| schedule: | |
| - cron: '*/10 * * * *' | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ssh-key: ${{ secrets.SSH_KEY }} | |
| repository: Xmader/musescore-downloader | |
| ref: master | |
| fetch-depth: 0 | |
| submodules: true | |
| - run: 'git remote add musescore [email protected]:$REPO.git' | |
| env: | |
| REPO: ${{ github.repository }} | |
| - run: 'git push -f musescore master:msdl' | |