.github/workflows/gen-images: add summary
This commit is contained in:
parent
6a2d3620f3
commit
8c83981f0b
|
@ -328,9 +328,24 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
make checksum DATECODE="${{ needs.prepare.outputs.datecode }}"
|
make checksum DATECODE="${{ needs.prepare.outputs.datecode }}"
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
|
id: upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: void-live-${{ needs.prepare.outputs.datecode }}
|
name: void-live-${{ needs.prepare.outputs.datecode }}
|
||||||
path: |
|
path: |
|
||||||
distdir-${{ needs.prepare.outputs.datecode }}/*
|
distdir-${{ needs.prepare.outputs.datecode }}/*
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
- name: Generate summary
|
||||||
|
run: |
|
||||||
|
cat << EOF >> "$GITHUB_STEP_SUMMARY"
|
||||||
|
## Images generated successfully!
|
||||||
|
|
||||||
|
### Download
|
||||||
|
|
||||||
|
Download the result of this run with \`./release.sh "${{ github.run_id }}" -- -R "${{ github.repository }}"\` or use [this url](${{ steps.upload.outputs.artifact-url }}).
|
||||||
|
|
||||||
|
### Checksums
|
||||||
|
\`\`\`
|
||||||
|
$(cat distdir-${{ needs.prepare.outputs.datecode }}/sha256sum.txt)
|
||||||
|
\`\`\`
|
||||||
|
EOF
|
||||||
|
|
Loading…
Reference in New Issue