Skip to content

Commit

Permalink
Set target, bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Mar 21, 2024
1 parent 50b9f16 commit ce8b97d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/docker-build-test-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v3.2

- name: Login to GitHub Container Registry
# TODO: Bump this to v3
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
Expand All @@ -43,7 +44,7 @@ jobs:

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5.5
with:
images: ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ inputs.image }}
tags: |
Expand All @@ -52,8 +53,10 @@ jobs:
- name: Build image
id: build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5.3
with:
tags: ${{ steps.meta.outputs.tags }}
platforms: ${{ inputs.architectore }}
push: false
load: true
target: base

0 comments on commit ce8b97d

Please sign in to comment.