Skip to content

Commit 27b9ea2

Browse files
fix the boolean check for the latest tag
1 parent b75e034 commit 27b9ea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
echo "FUSIONAUTH_TAGS=fusionauth/fusionauth-app:${{ inputs.version }}${{ inputs.tag-suffix }}" >> $GITHUB_ENV
3737
3838
- name: Optional :latest tag
39-
if: inputs.latest == 'true'
39+
if: ${{ inputs.latest == true }}
4040
run: |
4141
echo "FUSIONAUTH_TAGS=${{ env.FUSIONAUTH_TAGS }},fusionauth/fusionauth-app:latest${{ env.FUSIONAUTH_TAG_SUFFIX }}" >> $GITHUB_ENV
4242

0 commit comments

Comments
 (0)