Update README.md #400
Workflow file for this run
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 | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
deploy: | |
name: Deploy App | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- run: yarn install | |
- name: Deploy | |
run: | | |
git config --global user.name "action@github.com" | |
git config --global user.email "GitHub Action" | |
git remote set-url origin https://${ACCESS_TOKEN}@github.com/${REPO}.git | |
yarn deploy | |
env: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
REPO: ${{ github.repository }} |