fix ics20 ibc withdrawals (#1422) #433
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
--- | |
# Builds the static site via pnpm, then copies that local directory's contents | |
# to Firebase, at: https://app.testnet.penumbra.zone | |
name: Deploy static site | |
on: | |
# Support ad-hoc runs via dispatch, so we can deploy from | |
# unmerged feature branches if necessary. | |
workflow_dispatch: | |
workflow_call: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
- name: Install dependencies | |
run: pnpm install | |
working-directory: apps/minifront | |
- name: Build static site | |
run: pnpm build | |
working-directory: apps/minifront | |
- name: Deploy dapp static site to firebase | |
uses: w9jds/[email protected] | |
with: | |
args: deploy | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
PROJECT_ID: penumbra-dapp | |
PROJECT_PATH: apps/minifront/dist |