generated from opensafely-core/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
--- | ||
name: CI | ||
|
||
env: | ||
IMAGE_NAME: metrics | ||
PUBLIC_IMAGE_NAME: ghcr.io/ebmdatalab/metrics | ||
REGISTRY: ghcr.io | ||
SSH_AUTH_SOCK: /tmp/agent.sock | ||
|
||
on: | ||
push: | ||
|
||
|
@@ -72,6 +78,51 @@ jobs: | |
name: metrics-image | ||
path: /tmp/metrics.tar.gz | ||
|
||
deploy: | ||
needs: [check, test, docker-test, lint-dockerfile] | ||
|
||
runs-on: ubuntu-latest-4core | ||
|
||
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: Download docker image | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: metrics-image | ||
path: /tmp/image | ||
|
||
- name: Import docker image | ||
run: gunzip -c /tmp/image/metrics.tar.gz | docker load | ||
|
||
- name: Test image we imported from previous job works | ||
run: | | ||
SKIP_BUILD=1 just docker-run prod python -m metrics | ||
- 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: 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 metrics $SHA | ||
required-checks: | ||
if: always() | ||
|
||
|