Merge pull request #5560 from opensafely-core/ndoo-ref #600
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 | |
| env: | |
| IMAGE_NAME: job-server | |
| PUBLIC_IMAGE_NAME: ghcr.io/opensafely-core/job-server | |
| REGISTRY: ghcr.io | |
| SSH_AUTH_SOCK: /tmp/agent.sock | |
| on: | |
| push: | |
| branches: [main] | |
| concurrency: deploy-production | |
| jobs: | |
| test-and-build-docker-image: | |
| uses: ./.github/workflows/main.yml | |
| deploy: | |
| needs: [test-and-build-docker-image] | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| packages: write | |
| if: github.ref == 'refs/heads/main' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: "opensafely-core/setup-action@v1" | |
| with: | |
| install-just: true | |
| - name: Download docker image | |
| uses: actions/download-artifact@v7 | |
| with: | |
| name: job-server-image | |
| path: /tmp/image | |
| - name: Import docker image | |
| # Note that this filename is also set in the build workflow. | |
| # Changing it will require updating it elsewhere. | |
| run: docker image load --input /tmp/image/job-server.tar.zst | |
| - name: Test image we imported from previous job works | |
| run: | | |
| SKIP_BUILD=1 just docker-serve prod -d | |
| sleep 5 | |
| just docker-smoke-test || { docker logs job-server-prod-1; exit 1; } | |
| - name: Publish image | |
| run: | | |
| echo "${{ secrets.GITHUB_TOKEN }}" | docker login "$REGISTRY" -u "${{ github.actor }}" --password-stdin | |
| docker tag "$IMAGE_NAME" "$PUBLIC_IMAGE_NAME:latest" | |
| docker push "$PUBLIC_IMAGE_NAME:latest" | |
| - name: Create Sentry release | |
| uses: getsentry/action-release@128c5058bbbe93c8e02147fe0a9c713f166259a6 # v3.4.0 | |
| env: | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_RELEASE_INTEGRATION_TOKEN }} | |
| SENTRY_ORG: ebm-datalab | |
| SENTRY_PROJECT: job-server | |
| with: | |
| environment: production | |
| finalize: false | |
| - name: Deploy image | |
| run: | | |
| ssh-agent -a "$SSH_AUTH_SOCK" > /dev/null | |
| ssh-add - <<< "${{ secrets.DOKKU4_DEPLOY_SSH_KEY }}" | |
| SHA=$(docker inspect --format='{{index .RepoDigests 0}}' "$PUBLIC_IMAGE_NAME:latest") | |
| ssh -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" [email protected] git:from-image job-server "$SHA" | |
| - name: Finalize Sentry release | |
| uses: getsentry/action-release@128c5058bbbe93c8e02147fe0a9c713f166259a6 # v3.4.0 | |
| env: | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_RELEASE_INTEGRATION_TOKEN }} | |
| SENTRY_ORG: ebm-datalab | |
| SENTRY_PROJECT: job-server | |
| with: | |
| environment: production | |
| finalize: true | |
| - name: Create Honeycomb Marker | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh release download v0.2.10 -R honeycombio/honeymarker -p '*-linux-amd64*' -O honeymarker | |
| chmod 755 ./honeymarker | |
| # --dataset __all__ will ad an marker to *all* production datasets (this writekey is for production) | |
| ./honeymarker --writekey ${{ secrets.HC_MARKER_APIKEY }} --dataset job-server add --type deploy --msg "job-server deploy $GITHUB_SHA" |