Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jwijffels committed Feb 8, 2024
1 parent e6bbd96 commit c4621d1
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ on:
jobs:
docker:
runs-on: ubuntu-latest

strategy:
matrix:
config:
- { tag: "test", dockerfile: "test/Dockerfile"}

steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand All @@ -25,9 +31,9 @@ jobs:

- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: test
context: .
push: true
tags: |
ghcr.io/bnosac/blackbar-test:latest
tags: "ghcr.io/bnosac/blackbar-${{ matrix.config.tag }}:latest"
file: ${{ matrix.config.dockerfile }}

0 comments on commit c4621d1

Please sign in to comment.