We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a9f8c3 commit 3d83b88Copy full SHA for 3d83b88
1 file changed
.github/workflows/release.yml
@@ -11,17 +11,17 @@ concurrency:
11
jobs:
12
build-docker-release:
13
# Ignore tags with -, like v1.0.0-alpha
14
- # This job will build the docker container with the "latest" tag which
15
- # is a tag used in production, thus it should only be run for full releases.
16
if: startsWith(github.ref, 'refs/tags/') && !contains(github.ref, '-')
17
name: Build Release Docker image
18
uses: ./.github/workflows/build-docker.yml
19
with:
20
tags: |
21
- type=raw,value=latest
22
type=semver,pattern={{version}}
23
type=semver,pattern={{major}}.{{minor}}
24
type=sha
+ # Explicitly disable latest tag. It will be added otherwise.
+ flavor: |
+ latest=false
25
26
build-docker-prerelease:
27
# Only build tags with -, like v1.0.0-alpha
0 commit comments