Update Hi3CN metadata #139
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: Sync to Coding | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: '0' | |
| - name: Setup ssh-agent | |
| uses: tanmancan/[email protected] | |
| with: | |
| ssh-private-key: ${{ secrets.CODING_SSH_KEY }} | |
| ssh-public-key: ${{ secrets.CODING_KNOWN_HOSTS }} | |
| - name: Push | |
| run: | | |
| git remote add coding [email protected]:ohly/collapse/ReleaseRepo.git | |
| git push coding main --force |