feat!: upgrade access client, ucanto and other packages #174
Workflow file for this run
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
name: w3console | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'examples/react/w3console/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'examples/react/w3console/**' | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/pnpm | |
- name: Build w3console | |
run: pnpm build | |
working-directory: examples/react/w3console | |
env: | |
VITE_W3UP_ACCESS_SERVICE_URL: 'https://staging.up.web3.storage' | |
VITE_W3UP_ACCESS_SERVICE_DID: 'did:web:staging.web3.storage' | |
VITE_W3UP_UPLOAD_SERVICE_URL: 'https://staging.up.web3.storage' | |
VITE_W3UP_UPLOAD_SERVICE_DID: 'did:web:staging.web3.storage' | |
VITE_W3UP_SERVICE_BRAND_NAME: 'preview.web3.storage' | |
- name: Publish static site | |
uses: ./.github/actions/preview | |
id: preview | |
with: | |
path_to_add: examples/react/w3console/dist | |
web3_token: ${{ secrets.WEB3_TOKEN }} | |
# Enable to publish dnslink on merge to main | |
# dnslink_record: console | |
# dnslink_domain: web3.storage | |
cf_pages_project: console-web3-storage-preview | |
cf_account_id: ${{ secrets.CF_ACCOUNT_ID }} | |
cf_token: ${{ secrets.CF_TOKEN }} | |
- name: Add Preview URLs as Job Summary | |
run: echo "${{ steps.preview.outputs.summary }}" >> $GITHUB_STEP_SUMMARY | |
- name: Find Current Pull Request | |
uses: jwalton/[email protected] | |
id: finder | |
- name: Update Preview URLs PR Comment | |
uses: marocchino/[email protected] | |
with: | |
number: ${{ steps.finder.outputs.pr }} | |
message: ${{ steps.preview.outputs.summary }} |