Update PolymediaCard.tsx #12
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: Deploy Walrus Site using Walrus Sites GA | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies in temporary directory and Build Explorer | |
run: | | |
cd ./src/explorer | |
npm install -g pnpm | |
pnpm install | |
npm run build | |
- name: Deploy PTB Explorer PoC to Walrus | |
uses: zktx-io/[email protected] | |
with: | |
site-path: ${{ github.workspace }}/src/explorer/dist | |
object-id: '0x06f08ae0283fcda4d20bceff1b678f217625adfaddce903f14784542c314101a' | |
network: 'testnet' | |
epochs: 200 | |
env: | |
SUI_ADDRESS: ${{ vars.SUI_ADDRESS }} | |
SUI_KEYSTORE: ${{ secrets.SUI_KEYSTORE }} |