⬆️ Bump to react-bootstrap 1.6.8 #108
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 | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "16.x" | |
- name: git config | |
run: | | |
git config user.name github-pages-deploy-action | |
git config user.email github-pages-deploy-action@@users.noreply.github.com | |
git remote set-url origin https://${{github.actor}}:${{github.token}}@github.com/${{github.repository}}.git | |
- run: yarn install | |
- run: yarn build | |
env: | |
REACT_APP_GRAPHQL_ENDPOINT: https://us-east1-gitpop3.cloudfunctions.net/gitpop3-graphql | |
REACT_APP_SENTRY_DSN: https://[email protected]/5575586 | |
- run: yarn deploy |