Increase each event in the vesting schedule by 1 period #48
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 Frontend | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
jobs: | |
# Build web and upload the artifact. | |
build_web: | |
runs-on: ubuntu-latest | |
concurrency: ci-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v3 | |
# Install pnpm | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.9.0 | |
run_install: false | |
# Install deps and build. | |
- run: pnpm install | |
- run: CI= pnpm build | |
# Upload the artifact. | |
- uses: actions/upload-pages-artifact@v1 | |
with: | |
path: build | |
# Deploy web using the artifact from the previous job. | |
deploy_web: | |
runs-on: ubuntu-latest | |
needs: [build_web] | |
concurrency: ci-${{ github.ref }} | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- uses: actions/configure-pages@v1 | |
- id: deployment | |
uses: actions/deploy-pages@v1 | |