-
-
Notifications
You must be signed in to change notification settings - Fork 6
27 lines (25 loc) · 596 Bytes
/
build.yml
File metadata and controls
27 lines (25 loc) · 596 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Build
run: |
export PATH="$(yarn global bin):$PATH"
yarn global add @quasar/cli
yarn
quasar build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: dist/spa