Skip to content

Commit 00b46d9

Browse files
committed
avoid globbing?
1 parent 5a2c6f1 commit 00b46d9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-and-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ jobs:
107107
- name: Resolve release commit
108108
id: resolve-release-commit
109109
run: |
110-
if [[ -z "${{ github.event.inputs.backup-utils-release-commit }}" ]]; then
111-
echo "Using empty commit sha for release commit"
112-
echo "release-commit=${{ steps.empty-commit.outputs.commit_hash }}" >> $GITHUB_OUTPUT
110+
"if [[ -z '${{ github.event.inputs.backup-utils-release-commit }}' ]]; then
111+
echo 'Using empty commit sha for release commit'
112+
echo 'release-commit=${{ steps.empty-commit.outputs.commit_hash }}' >> $GITHUB_OUTPUT
113113
else
114-
echo "Using provided commit sha for release commit"
115-
echo "release-commit=${{ github.event.inputs.backup-utils-release-commit }}" >> $GITHUB_OUTPUT
116-
fi
114+
echo 'Using provided commit sha for release commit'
115+
echo 'release-commit=${{ github.event.inputs.backup-utils-release-commit }}' >> $GITHUB_OUTPUT
116+
fi"
117117
- name: Checkout backup-utils-private
118118
uses: actions/checkout@v4
119119
with:

0 commit comments

Comments
 (0)