chore: sync changes in 256 #33
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 KEEERBot | |
| on: [ push ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Sync repo | |
| run: | | |
| mkdir ~/.ssh | |
| echo "${{ secrets.KEEERBOT_SSH_KEY }}" > ~/.ssh/id_rsa | |
| chmod 600 ~/.ssh/id_rsa | |
| git fetch --unshallow | |
| git push --all --force --prune git@github.com:KEEERBot/static-services.git |