File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,17 +11,17 @@ concurrency:
1111jobs :
1212 build-docker-release :
1313 # 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.
1614 if : startsWith(github.ref, 'refs/tags/') && !contains(github.ref, '-')
1715 name : Build Release Docker image
1816 uses : ./.github/workflows/build-docker.yml
1917 with :
2018 tags : |
21- type=raw,value=latest
2219 type=semver,pattern={{version}}
2320 type=semver,pattern={{major}}.{{minor}}
2421 type=sha
22+ # Explicitly disable latest tag. It will be added otherwise.
23+ flavor : |
24+ latest=false
2525
2626 build-docker-prerelease :
2727 # Only build tags with -, like v1.0.0-alpha
You can’t perform that action at this time.
0 commit comments