Skip to content

Commit f78ac1a

Browse files
committed
release: add summary to GitHub job
1 parent 0b9e213 commit f78ac1a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/release.yml

+8
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ jobs:
5151
with:
5252
name: sources
5353
path: '${{ github.workspace}}/dist'
54+
- name: 'Generate summary'
55+
run: |
56+
echo "Run the following commands to download all artifacts:" >> $GITHUB_STEP_SUMMARY
57+
echo '```' >> $GITHUB_STEP_SUMMARY
58+
echo "mkdir -p /tmp/${{ steps.releaser.outputs.project }}-${{ steps.releaser.outputs.version }}" >> $GITHUB_STEP_SUMMARY
59+
echo "cd /tmp/${{ steps.releaser.outputs.project }}-${{ steps.releaser.outputs.version }}" >> $GITHUB_STEP_SUMMARY
60+
echo "gh run -R ${{ github.repository }} download ${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY
61+
echo '```' >> $GITHUB_STEP_SUMMARY
5462
5563
linux-verify:
5664
needs: [src]

0 commit comments

Comments
 (0)