Fix error on participants without address (#259) #157
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
## This workflow is deprecated in favor of deploy-dev using deploy-env | |
# name: Build & deploy to gh-pages | |
# on: | |
# push: | |
# branches: | |
# - main | |
# jobs: | |
# build: | |
# name: Build and deploy | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# - name: Install Node.js | |
# uses: actions/setup-node@v1 | |
# with: | |
# node-version: 18.x | |
# - name: Install NPM packages | |
# run: yarn install --frozen-lockfile | |
# - name: Build project | |
# run: yarn build | |
# env: | |
# PUBLIC_URL: ${{ secrets.PUBLIC_URL }} | |
# REACT_APP_API_BASE_URL: ${{ secrets.REACT_APP_API_BASE_URL }} | |
# REACT_APP_CORS_PROXY: ${{ secrets.REACT_APP_CORS_PROXY }} | |
# REACT_APP_SENTRY_DSN: ${{ secrets.REACT_APP_SENTRY_DSN }} | |
# - name: Deploy to gh-pages | |
# uses: peaceiris/actions-gh-pages@v3 | |
# with: | |
# deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
# publish_dir: ./build |