diff --git a/.github/workflows/build_containers.yml b/.github/workflows/build_containers.yml index c43b65e..3d74e62 100644 --- a/.github/workflows/build_containers.yml +++ b/.github/workflows/build_containers.yml @@ -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 @@ -38,7 +38,7 @@ 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 @@ -46,3 +46,12 @@ jobs: 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 }}