Skip to content

Commit

Permalink
Fix docker workflow tag condition
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel A. Cabrera Minagorri <devgorri@gmail.com>
  • Loading branch information
miguelaeh committed Sep 9, 2023
1 parent 6aedcf5 commit c9092f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ jobs:
context: "{{defaultContext}}:package"
file: ./Dockerfile
push: true
tags: ${{ coalesce(github.events.inputs.tag-override, steps.meta.outputs.tags) }}
tags: ${{ if github.events.inputs.tag-override != '' }}${{ github.events.inputs.tag-override }}${{ else }}${{ steps.meta.outputs.tags }}${{ endif }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit c9092f3

Please sign in to comment.