Merge pull request #8414 from thalesmg/fix-docker-latest-elixir
fix(docker): avoid tagging elixir image as latest
This commit is contained in:
commit
1eaab050f9
|
@ -323,4 +323,9 @@ jobs:
|
||||||
if: ${{ needs.prepare.outputs.IS_EXACT_TAG }}
|
if: ${{ needs.prepare.outputs.IS_EXACT_TAG }}
|
||||||
working-directory: source
|
working-directory: source
|
||||||
run: |
|
run: |
|
||||||
scripts/docker-create-push-manifests.sh "${{ steps.meta.outputs.tags }}" "${{ needs.prepare.outputs.IS_DOCKER_LATEST }}"
|
if [ ${{ matrix.build_elixir }} = 'with_elixir' ]; then
|
||||||
|
is_latest=false
|
||||||
|
else
|
||||||
|
is_latest="${{ needs.prepare.outputs.IS_DOCKER_LATEST }}"
|
||||||
|
fi
|
||||||
|
scripts/docker-create-push-manifests.sh "${{ steps.meta.outputs.tags }}" "$is_latest"
|
||||||
|
|
Loading…
Reference in New Issue