Skip to content

Commit 5c9a929

Browse files
authored
Merge pull request #14 from ipfs/summary-formatting
fix summary formatting
2 parents cd3a400 + 6211e4b commit 5c9a929

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [1.1.1] - 2025-02-26
11+
12+
### Fixed
13+
14+
- Improve formatting of the action summary output.
15+
1016
## [1.1.0] - 2025-02-26
1117

1218
### Fixed

action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,12 @@ runs:
121121
echo "### 🚀 Build Preview on IPFS ready" >> $GITHUB_STEP_SUMMARY
122122
echo "- 🔎 Commit: ${{ github.event.pull_request.head.sha || github.sha }}" >> $GITHUB_STEP_SUMMARY
123123
echo "- 🔏 CID: \`${{ steps.merkleize.outputs.cid }}\`" >> $GITHUB_STEP_SUMMARY
124-
echo "- 📦 [Preview](https://w3s.link/ipfs/${{ steps.merkleize.outputs.cid }})" >> $GITHUB_STEP_SUMMARY
125-
echo "- 🔗 [Service Worker Preview](https://inbrowser.link/ipfs/${{ steps.merkleize.outputs.cid }})" >> $GITHUB_STEP_SUMMARY
124+
echo "- 📦 Preview:" >> $GITHUB_STEP_SUMMARY
125+
echo "- [dweb.link](https://dweb.link/ipfs/${{ steps.merkleize.outputs.cid }})" >> $GITHUB_STEP_SUMMARY
126+
if [[ -n "${{ inputs.storacha-key }}" && -n "${{ inputs.storacha-proof }}" ]]; then
127+
echo "- [w3s.link](https://w3s.link/ipfs/${{ steps.merkleize.outputs.cid }})" >> $GITHUB_STEP_SUMMARY
128+
fi
129+
echo "- [inbrowser.link](https://inbrowser.link/ipfs/${{ steps.merkleize.outputs.cid }})" >> $GITHUB_STEP_SUMMARY
126130
fi
127131
128132
- name: Setup Kubo CLI

0 commit comments

Comments
 (0)