Skip to content

fix: Fee for empty chain #12

fix: Fee for empty chain

fix: Fee for empty chain #12

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm i
- name: Populate .env
run: |
echo "VITE_WALLET_CONNECT_PROJECT_ID=${{ secrets.VITE_WALLET_CONNECT_PROJECT_ID }}" > .env && \
echo "VITE_TESTNET_WS_ENDPOINT=${{ vars.VITE_TESTNET_WS_ENDPOINT }}" >> .env && \
echo "VITE_TESTNET_ARCHIVE_WS_ENDPOINT=${{ vars.VITE_TESTNET_ARCHIVE_WS_ENDPOINT }}" >> .env
- name: Build website
run: pnpm build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
name: Deploy to GitHub Pages
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4