File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ ## [ 1.1.1] - 2025-02-26
11
+
12
+ ### Fixed
13
+
14
+ - Improve formatting of the action summary output.
15
+
10
16
## [ 1.1.0] - 2025-02-26
11
17
12
18
### Fixed
Original file line number Diff line number Diff line change @@ -121,8 +121,12 @@ runs:
121
121
echo "### 🚀 Build Preview on IPFS ready" >> $GITHUB_STEP_SUMMARY
122
122
echo "- 🔎 Commit: ${{ github.event.pull_request.head.sha || github.sha }}" >> $GITHUB_STEP_SUMMARY
123
123
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
126
130
fi
127
131
128
132
- name : Setup Kubo CLI
You can’t perform that action at this time.
0 commit comments