Merge pull request #32 from ourzora/update_libraries_fix_wallet_conne… #21
This file contains hidden or 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: Build and deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@master | |
| - run: corepack enable | |
| - run: pnpm install --frozen-lockfile | |
| - name: Build 🏗️ | |
| run: pnpm build | |
| - name: Deploy to GH Pages 🚀 | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: dist |