Skip to content

Commit

Permalink
fix: bring back publish to web3.storage
Browse files Browse the repository at this point in the history
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
olizilla committed Jan 18, 2024
1 parent 825f702 commit 648ef02
Showing 1 changed file with 15 additions and 25 deletions.
40 changes: 15 additions & 25 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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

0 comments on commit 648ef02

Please sign in to comment.