Merge pull request #2668 from arduino/karlsoderby/add-linux-note-flasher #2142
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 private mirror | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| repo-sync: | |
| if: "github.repository == 'arduino/docs-content'" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: "0" | |
| ref: "main" | |
| - name: Install SSH key | |
| uses: shimataro/ssh-key-action@v2 | |
| with: | |
| key: ${{ secrets.DOCS_PRIVATE_SSH_KEY }} | |
| known_hosts: unnecessary | |
| - run: | | |
| git remote add mirror [email protected]:arduino/docs-content-private.git | |
| git config --global user.email "sync@docs-content-private" | |
| git config --global user.name "docs-sync" | |
| git checkout main | |
| git push --force -u mirror main |