Skip to content

Commit 70f21ff

Browse files
committed
does copilot know the answer?
1 parent c506a52 commit 70f21ff

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)