Skip to content

Commit f571e2e

Browse files
committed
Fix missing quote
Signed-off-by: Taylor Smock <smocktaylor@gmail.com>
1 parent 64ea631 commit f571e2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Find ref to build/publish
2222
id: ref_finder
2323
run: |
24-
if [[ ! -z "${{ inputs.ref }} ]]; then echo "ref=${{ inputs.ref }}" >> $GITHUB_OUTPUT
24+
if [[ ! -z "${{ inputs.ref }}" ]]; then echo "ref=${{ inputs.ref }}" >> $GITHUB_OUTPUT
2525
else echo "ref=${{ github.sha }}" >> $GITHUB_OUTPUT
2626
- uses: actions/checkout@v4
2727
with:

0 commit comments

Comments
 (0)