-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: bring back publish to web3.storage
upgrade to add-to-web3 v3. `W3_PRINCIPAL` and `W3_PROOF` have been set as repo secrets. License: MIT Signed-off-by: Oli Evans <[email protected]>
- Loading branch information
Showing
1 changed file
with
15 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,13 +23,12 @@ jobs: | |
- run: pnpm test | ||
- run: pnpm build | ||
- name: Add to web3.storage | ||
uses: web3-storage/add-to-web3@v2 | ||
uses: web3-storage/add-to-web3@v3 | ||
id: ipfs | ||
with: | ||
path_to_add: ${{ env.outputDir }} | ||
web3_token: ${{ secrets.WEB3_TOKEN }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
secret_key: ${{ secrets.W3_PRINCIPAL }} | ||
proof: ${{ secrets.W3_PROOF }} | ||
- name: Deploy preview build to Cloudflare Pages | ||
uses: mathiasvr/[email protected] | ||
id: cloudflare | ||
|
@@ -77,18 +76,17 @@ jobs: | |
- run: pnpm lint | ||
- run: pnpm test | ||
- run: pnpm build | ||
# - name: Add to web3.storage | ||
# uses: web3-storage/add-to-web3@v2 | ||
# id: ipfs | ||
# with: | ||
# path_to_add: ${{ env.outputDir }} | ||
# web3_token: ${{ secrets.WEB3_TOKEN }} | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# - name: Update IPFS DNSLink https://web3.storage | ||
# run: npx dnslink-cloudflare --record _dnslink --domain web3.storage --link /ipfs/${{ steps.ipfs.outputs.cid }} | ||
# env: | ||
# CF_API_TOKEN: ${{ secrets.CF_TOKEN }} | ||
- name: Add to web3.storage | ||
uses: web3-storage/add-to-web3@v3 | ||
id: ipfs | ||
with: | ||
path_to_add: ${{ env.outputDir }} | ||
secret_key: ${{ secrets.W3_PRINCIPAL }} | ||
proof: ${{ secrets.W3_PROOF }} | ||
- name: Update IPFS DNSLink https://web3.storage | ||
run: npx dnslink-cloudflare --record _dnslink --domain web3.storage --link /ipfs/${{ steps.ipfs.outputs.cid }} | ||
env: | ||
CF_API_TOKEN: ${{ secrets.CF_TOKEN }} | ||
- name: Deploy preview build to Cloudflare Pages | ||
uses: mathiasvr/[email protected] | ||
id: cloudflare | ||
|
@@ -98,20 +96,12 @@ jobs: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_TOKEN }} | ||
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }} | ||
- name: Add Preview URLs as Job Summary | ||
# run: | | ||
# echo " | ||
# ### Deployed | ||
# β https://web3.storage | ||
|
||
# ### Snapshot urls πβ¨ | ||
# - π https://${{ steps.ipfs.outputs.cid }}.ipfs.w3s.link | ||
# - β οΈ ${{ steps.cloudflare_url.outputs.stdout }} | ||
# " >> $GITHUB_STEP_SUMMARY | ||
run: | | ||
echo " | ||
### Deployed | ||
β https://web3.storage | ||
### Snapshot urls πβ¨ | ||
- π https://${{ steps.ipfs.outputs.cid }}.ipfs.w3s.link | ||
- β οΈ ${{ steps.cloudflare_url.outputs.stdout }} | ||
" >> $GITHUB_STEP_SUMMARY |