Skip to content

Commit

Permalink
bump build and push action
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefhalgas authored Aug 22, 2024
1 parent 52e8701 commit f9cc4d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,21 +56,23 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push unbound
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
context: ./images
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ env.registry }}/${{ github.repository }}:${{ steps.tag.outputs.tag }}, ${{ env.registry }}/${{ github.repository }}:latest
builder: ${{ steps.buildx.outputs.name }}
file: ./images/Dockerfile
provenance: false

- name: Build and push exporter
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
context: ./images
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ env.registry }}/${{ github.repository }}-exporter:${{ steps.tag.outputs.tag }}, ${{ env.registry }}/${{ github.repository }}-exporter:latest
builder: ${{ steps.buildx.outputs.name }}
file: ./images/Dockerfile-exporter
provenance: false

0 comments on commit f9cc4d2

Please sign in to comment.