Skip to content

Commit

Permalink
fix(actions): fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
rbioteau committed Nov 16, 2023
1 parent 6fa8932 commit 7be4187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
docker push ${{ env.IMAGE_NAME }}
- name: Publish as latest to docker.io
if: {{ github.event.inputs.isLatest }}
if: ${{ github.event.inputs.isLatest }}
run: |
docker tag ${{ env.IMAGE_NAME }}:${{ github.event.inputs.imageVersion }} ${{ env.IMAGE_NAME }}:latest
docker publish ${{ env.IMAGE_NAME }}:latest
Expand Down

0 comments on commit 7be4187

Please sign in to comment.