Skip to content

Commit

Permalink
fix: temporarily disable add-to-web3 (#69)
Browse files Browse the repository at this point in the history
...pending it being upgraded to use the new API
  • Loading branch information
Alan Shaw committed Jan 12, 2024
1 parent 3125134 commit 05c0d29
Showing 1 changed file with 21 additions and 13 deletions.
34 changes: 21 additions & 13 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,18 @@ 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@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: Deploy preview build to Cloudflare Pages
uses: mathiasvr/command-output@v1.1.0
id: cloudflare
Expand All @@ -98,12 +98,20 @@ 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 05c0d29

Please sign in to comment.