Deploy #41
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: | |
| workflow_run: | |
| workflows: | |
| - Build | |
| types: | |
| - completed | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| deploy: | |
| if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'push' | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: production-deploy | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.workflow_run.head_sha }} | |
| - name: Upload compose.yaml to VPS | |
| uses: appleboy/scp-action@v0.1.7 | |
| with: | |
| host: ${{ secrets.VPS_HOST }} | |
| username: ${{ secrets.VPS_USER }} | |
| key: ${{ secrets.VPS_SSH_KEY }} | |
| port: ${{ secrets.VPS_PORT }} | |
| source: compose.yaml | |
| target: ${{ secrets.VPS_APP_DIR }}/ | |
| - name: Deploy to VPS | |
| uses: appleboy/ssh-action@v1.2.0 | |
| with: | |
| host: ${{ secrets.VPS_HOST }} | |
| username: ${{ secrets.VPS_USER }} | |
| key: ${{ secrets.VPS_SSH_KEY }} | |
| port: ${{ secrets.VPS_PORT }} | |
| script_stop: true | |
| script: | | |
| set -euo pipefail | |
| if [ -n "${{ secrets.GHCR_USERNAME }}" ] && [ -n "${{ secrets.GHCR_TOKEN }}" ]; then | |
| echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u "${{ secrets.GHCR_USERNAME }}" --password-stdin | |
| fi | |
| cd "${{ secrets.VPS_APP_DIR }}" | |
| IMAGE_TAG="sha-${{ github.event.workflow_run.head_sha }}" | |
| printf 'IMAGE_TAG=%s\n' "$IMAGE_TAG" > .env.deploy | |
| export IMAGE_TAG | |
| docker compose pull | |
| docker compose up -d | |
| docker compose ps |