Skip to content

Merge pull request #2968 from opensafely-core/dependabot/pip/django-5… #390

Merge pull request #2968 from opensafely-core/dependabot/pip/django-5…

Merge pull request #2968 from opensafely-core/dependabot/pip/django-5… #390

Workflow file for this run

---
name: Deploy
env:
IMAGE_NAME: opencodelists
PUBLIC_IMAGE_NAME: ghcr.io/opensafely-core/opencodelists
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-latest
permissions:
contents: read
packages: write
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: opensafely-core/setup-action@v1
with:
install-just: true
- name: Download docker image
uses: actions/download-artifact@v7
with:
name: opencodelists-image
path: /tmp/image
- name: Import docker image
run: docker image load --input /tmp/image/opencodelists.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 || {
echo "Smoke test failed, attempting to show logs for all containers:"
for c in $(docker ps -a --format '{{.Names}}'); do
echo "Logs for $c:";
docker logs "$c" || true;
done
exit 1
}
- name: Publish docker 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@dab6548b3c03c4717878099e43782cf5be654289 # v3.5.0
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_RELEASE_INTEGRATION_TOKEN }}
SENTRY_ORG: ebm-datalab
SENTRY_PROJECT: opencodelists
with:
environment: production
ignore_empty: true
finalize: false
- name: Setup SSH Agent
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.DOKKU3_DEPLOY_SSH_KEY }}"
- name: Deploy
run: |
SHA=$(docker inspect --format='{{index .RepoDigests 0}}' $PUBLIC_IMAGE_NAME:latest)
ssh -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" dokku@dokku3.ebmdatalab.net git:from-image opencodelists $SHA
- name: Create Sentry release
uses: getsentry/action-release@dab6548b3c03c4717878099e43782cf5be654289 # v3.5.0
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_RELEASE_INTEGRATION_TOKEN }}
SENTRY_ORG: ebm-datalab
SENTRY_PROJECT: opencodelists
with:
environment: production
ignore_empty: true
finalize: true