Skip to content

Commit

Permalink
Update summary messages to show the url as a link
Browse files Browse the repository at this point in the history
  • Loading branch information
QU3B1M committed Oct 30, 2024
1 parent 2584c4f commit c4d4812
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ jobs:
aws s3 cp "$src" "$dest"
s3uri="${dest}${{ steps.package.outputs.name }}"
echo "::notice::S3 URI: ${s3uri}"
echo "**Package S3 URI: ${s3uri}**" >> $GITHUB_STEP_SUMMARY
echo "**Package S3 URI: [${{ steps.package.outputs.name }}](${s3uri})**" >> $GITHUB_STEP_SUMMARY
- name: Upload checksum to S3sha512
if: ${{ inputs.upload && inputs.checksum }}
Expand All @@ -321,4 +321,4 @@ jobs:
aws s3 cp "$src" "$dest"
s3uri="${dest}${{ steps.package.outputs.name }}.sha512"
echo "::notice::S3 sha512 URI: ${s3uri}"
echo "**Package checksum S3 URI: ${s3uri}**" >> $GITHUB_STEP_SUMMARY
echo "**Package checksum S3 URI: [${{ steps.package.outputs.name }}.sha512](${s3uri})**" >> $GITHUB_STEP_SUMMARY

0 comments on commit c4d4812

Please sign in to comment.