Update deploy.yml #6
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 to GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' # Use the Node.js version you prefer | |
- name: Install dependencies | |
run: | | |
cd demo-app | |
npm install | |
- name: Build the app | |
run: | | |
cd demo-app | |
npm run build | |
- name: Deploy to GitHub Pages | |
run: | | |
cd demo-app | |
npm install gh-pages --save-dev | |
npm run deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is automatically provided by GitHub |