We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b9e213 commit f78ac1aCopy full SHA for f78ac1a
.github/workflows/release.yml
@@ -51,6 +51,14 @@ jobs:
51
with:
52
name: sources
53
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
62
63
linux-verify:
64
needs: [src]
0 commit comments