We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b250572 commit e1289acCopy full SHA for e1289ac
1 file changed
.github/workflows/deploy.yml
@@ -381,8 +381,13 @@ jobs:
381
make_tar_gz arm64-osx '*-macos-14/*form'
382
make_zip x86_64-windows '*-windows-2019/*form.exe'
383
384
- - name: Print distributions
385
- run: ls -l dist
+ - name: Summarize files for distribution
+ run: |
386
+ echo "Number of files: $(ls -1 dist | wc -l)" >> $GITHUB_STEP_SUMMARY
387
+ echo '' >> $GITHUB_STEP_SUMMARY
388
+ echo '| File Name | Size (bytes) |' >> $GITHUB_STEP_SUMMARY
389
+ echo '| --- | ---: |' >> $GITHUB_STEP_SUMMARY
390
+ ls -l dist | tail -n +2 | awk '{ printf "| %s | %s |\n", $9, $5 }' >> $GITHUB_STEP_SUMMARY
391
392
# Upload the distributions as an artifact, regardless of whether
393
# the commit has a versioning tag. This makes checking and debugging easy.
0 commit comments