Skip to content

Commit

Permalink
Merge pull request #128 from alan-turing-institute/pulumi
Browse files Browse the repository at this point in the history
Update workflow
  • Loading branch information
rchan26 authored Nov 1, 2023
2 parents 1c2480c + a8a88e7 commit 1d9be1f
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/build_docker_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- "main"
- "pulumi"
tags:
- "*"

Expand All @@ -13,11 +14,20 @@ env:

jobs:
build-and-push-image:
name: Push Docker image to GitHub container repository
name: Push Docker images to GitHub container repository
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- dockerfile: docker/reginald/Dockerfile
image: ghcr.io/${{ github.repository }}_reginald
- dockerfile: docker/slack_bot/Dockerfile
image: ghcr.io/${{ github.repository }}_slackbot
permissions:
packages: write
contents: read

steps:
- name: Check out the repo
uses: actions/checkout@v3
Expand All @@ -33,21 +43,12 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository }}
- name: Build and push Docker image for the Reginald app
uses: docker/build-push-action@v4
with:
file: docker/reginald/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
images: ${{ matrix.image }}

- name: Build and push Docker image for the slack-bot only app
- name: Build and push Docker images
uses: docker/build-push-action@v4
with:
file: docker/slack_bot/Dockerfile
file: ${{ matrix.dockerfile }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 1d9be1f

Please sign in to comment.