Skip to content

Commit 0627b60

Browse files
authored
Merge pull request lllyasviel#266 from ayan4m1/fix/quoting-github-actions
Fix double quotes in GHA expression
2 parents 81d35ce + dd437bc commit 0627b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/docker-publish-action/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ runs:
5252
push: true
5353
file: Dockerfile
5454
tags: |
55-
${{ inputs.image_name }}:cuda${{ steps.trimCudaVersion.outputs.string }}-latest${{ inputs.branch == "main" && '' || join('-', inputs.branch) }}
55+
${{ inputs.image_name }}:cuda${{ steps.trimCudaVersion.outputs.string }}-latest${{ inputs.branch == 'main' && '' || join('-', inputs.branch) }}
5656
${{ inputs.image_name }}:cuda${{ steps.trimCudaVersion.outputs.string }}-${{ steps.trimCommitSha.outputs.string }}
5757
labels: ${{ steps.meta.outputs.labels }}
5858
build-args: |

0 commit comments

Comments
 (0)