Skip to content

Commit

Permalink
Adding a build for the second container
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlovelltroy committed May 6, 2024
1 parent 0c15525 commit 8f9966c
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
packages: write
contents: read
jobs:
build-local-ca:
build-dnsmasq:
runs-on: ubuntu-latest
steps:
- name: check out the repo
Expand Down Expand Up @@ -38,11 +38,20 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
- name: Build and push dnsmasq
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name : Build and push dnsmasq-loader
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
context: .
file: ./Dockerfile.loader
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 8f9966c

Please sign in to comment.