feat: Scott mode. #4
Workflow file for this run
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: Deploy | |
| on: | |
| push: | |
| branches: | |
| - tumble-dark | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23' | |
| - name: Build for Linux amd64 | |
| run: make build-linux | |
| - name: Deploy to server | |
| env: | |
| SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_SSH_KEY }} | |
| DEPLOY_HOST: tumble.wcyd.org | |
| DEPLOY_USER: tumble | |
| DEPLOY_PATH: /srv/tumble/bin/tumble | |
| run: | | |
| # Set up SSH | |
| mkdir -p ~/.ssh | |
| echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_deploy | |
| chmod 600 ~/.ssh/id_deploy | |
| ssh-keyscan -H $DEPLOY_HOST >> ~/.ssh/known_hosts | |
| # Copy binary to server | |
| scp -i ~/.ssh/id_deploy bin/tumble-linux-amd64 ${DEPLOY_USER}@${DEPLOY_HOST}:/tmp/tumble.new | |
| # Replace binary and restart | |
| ssh -i ~/.ssh/id_deploy ${DEPLOY_USER}@${DEPLOY_HOST} << 'EOF' | |
| mv /srv/tumble/bin/tumble /srv/tumble/bin/tumble.old | |
| mv /tmp/tumble.new /srv/tumble/bin/tumble | |
| chmod +x /srv/tumble/bin/tumble | |
| sudo systemctl restart tumble | |
| EOF |