Create main.yml #1
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 main | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: Build and deploy main | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/[email protected] | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
with: | |
path: ~/node_modules | |
key: cache-${{ hashFiles('**/package-lock.json') }} | |
# pass --base for application to work under GitHub pages | |
- name: Install and build | |
run: | | |
npm install | |
npm run build -- --base=/${{ github.event.repository.name }}/ | |
- name: Deploy to github pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: dist | |
- name: Publish deployed code | |
uses: actions/upload-artifact@v2 | |
with: | |
name: published | |
path: dist |