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/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ jobs:
type=sha
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand Down Expand Up @@ -123,7 +121,8 @@ jobs:
latest=false
# generate Docker tags based on the following events/attributes
tags: |
type=semver,pattern={{version}},type=sha,suffix=-amd64,latest=false
type=semver,pattern={{version}},suffix=-amd64,latest=false
type=sha,suffix=-amd64,latest=false
- name: Build and push single-arch amd64 image
#if: startsWith(github.ref, 'refs/tags/v')
uses: docker/build-push-action@v3
Expand All @@ -145,7 +144,8 @@ jobs:
latest=false
# generate Docker tags based on the following events/attributes
tags: |
type=semver,pattern={{version}},type=sha,suffix=-arm64,latest=false
type=semver,pattern={{version}},suffix=-arm64,latest=false
type=sha,suffix=-arm64,latest=false
- name: Build and push single-arch arm64 image
#if: startsWith(github.ref, 'refs/tags/v')
uses: docker/build-push-action@v3
Expand Down