net: Fixed a network stack shutdown. #45
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: Sourceforge sync | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| deploy: | |
| if: github.repository == 'KallistiOS/KallistiOS' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup-ssh | |
| run: | | |
| install -m 600 -D /dev/null ~/.ssh/id_ed25519 | |
| echo "${{ secrets.SF_MIRROR_KEY }}" > ~/.ssh/id_ed25519 | |
| ssh-keyscan -H git.code.sf.net > ~/.ssh/known_hosts | |
| - name: sourceforge-sync | |
| run: | | |
| git remote add sourceforge ssh://[email protected]/p/cadcdev/kallistios | |
| git push sourceforge master |