Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:

# Workaround: https://github.com/docker/build-push-action/issues/461
- name: Setup Docker buildx
uses: docker/setup-buildx-action@dae06517fdd6edc47dd9589af63eaee33f4b5141
uses: docker/setup-buildx-action@e35beed76f4e80e9b1116ca47dfa5939a88dd8ff

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@bb9683dca29f758cbd6ee832740e9f2dbeb21a3e
uses: docker/login-action@de05a6d3a24346d4659bce540fac29c04a309bad
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
Expand All @@ -56,7 +56,7 @@ jobs:
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@12e32e61d3439d838b9b6d3fda7d2f6a422f893d
uses: docker/metadata-action@54262e8fce11c7b5496f28398368170da45de7e7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# generate Docker tags based on the following events/attributes
Expand All @@ -69,7 +69,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@502612d46437e573ecd598d11dd0b009741ed5cd
uses: docker/build-push-action@c5117b60bc829f00aaacb038e99de2712bee6e6e
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v7
Expand Down