Skip to content

Commit

Permalink
fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
tmclaugh committed Sep 3, 2024
1 parent 0e86dcd commit acac015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
id: set-artifact-name
shell: bash
run: |
if [ ${{ inputs.artifact_name_override }} != '' ]; then
if [ '${{ inputs.artifact_name_override }}' != '' ]; then
name="${{ inputs.artifact_name_override }}";
else
name="${{ env.GITHUB_REPOSITORY_SLUG }}-${{ env.GITHUB_REF_SLUG_URL }}-${{ github.run_number }}-${{ github.sha }}";
Expand Down

0 comments on commit acac015

Please sign in to comment.