Skip to content

Commit

Permalink
Add deploy step to github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rebkwok committed Jan 4, 2024
1 parent b3f821a commit 15942b5
Showing 1 changed file with 47 additions and 4 deletions.
51 changes: 47 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
---
name: CI

env:
IMAGE_NAME: bennettbot
PUBLIC_IMAGE_NAME: ghcr.io/ebmdatalab/bennettbot
REGISTRY: ghcr.io
SSH_AUTH_SOCK: /tmp/agent.sock

on:
push:
workflow_dispatch:

jobs:
check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: opensafely-core/setup-action@v1
with:
install-just: true
Expand All @@ -22,7 +29,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: opensafely-core/setup-action@v1
with:
install-just: true
Expand All @@ -37,7 +44,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: opensafely-core/setup-action@v1
with:
install-just: true
Expand All @@ -49,9 +56,45 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: opensafely-core/setup-action@v1
with:
install-just: true
- name: Run tests in docker
run: just docker/test

deploy:
needs: [check, test, docker-check, docker-test]

runs-on: ubuntu-latest

permissions:
contents: read
packages: write

if: github.ref == 'refs/heads/main'

concurrency: deploy-production

steps:
- uses: actions/checkout@v4
- uses: opensafely-core/setup-action@v1
with:
install-just: true

- name: Build docker image
run: |
just docker/build prod
- 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: Deploy image
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.DOKKU3_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 bennettbot $SHA

0 comments on commit 15942b5

Please sign in to comment.