Add environment variables for backend URL and Wallet Connect project ID #5
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: Build and deploy app | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy-app: | |
permissions: | |
pages: write | |
id-token: write | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
VITE_BACKEND_URL: ${{ vars.VITE_BACKEND_URL }} | |
VITE_WALLET_CONNECT_PROJECT_ID: ${{ vars.VITE_WALLET_CONNECT_PROJECT_ID }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- uses: c-hive/gha-yarn-cache@v2 | |
- name: Install modules | |
run: yarn | |
shell: bash | |
- name: Build code | |
run: yarn build | |
shell: bash | |
- name: Setup Pages | |
uses: actions/configure-pages@v2 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: 'dist' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |