Skip to content

Commit 0ca91f9

Browse files
committed
fixup! Add a workflow definition to upload Git for Windows' snapshots
1 parent 14bcad7 commit 0ca91f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/upload-snapshot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ jobs:
127127
.flat()
128128
if (assetsToUpload.length === 0) throw new Error(`No assets to upload!`)
129129
console.log(JSON.stringify(assetsToUpload, null, 2))
130+
core.setOutput('paths', assetsToUpload.join(' '))
130131
return assetsToUpload
131132
- name: update check-run
132133
if: env.CREATE_CHECK_RUN != 'false'
@@ -221,7 +222,7 @@ jobs:
221222
--target "${{ steps.bundle-artifacts.outputs.git-commit-oid }}" \
222223
--title "${{ steps.bundle-artifacts.outputs.date }}" \
223224
${{ steps.bundle-artifacts.outputs.ver }} \
224-
${{ steps.download-artifacts.outputs.result }} # no quotes needed here
225+
${{ steps.download-artifacts.outputs.paths }}
225226
- name: update check-run
226227
if: env.CREATE_CHECK_RUN != 'false'
227228
uses: ./.github/actions/check-run-action

0 commit comments

Comments
 (0)