feat: read chainId from connected wallet to launch v4 projects + NFTs… #231
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 Migrations to Sepolia | |
on: | |
push: | |
branches: | |
- dev | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
env: | |
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }} | |
SUPABASE_DB_PASSWORD: ${{ secrets.SEPOLIA_DB_PASSWORD }} | |
SEPOLIA_PROJECT_ID: ${{ secrets.SEPOLIA_PROJECT_ID }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: supabase/setup-cli@v1 | |
- run: | | |
supabase link --project-ref $SEPOLIA_PROJECT_ID | |
supabase db push |