mirror of
https://github.com/dtomlinson91/anno-production-chain-renderer.git
synced 2025-12-22 14:25:45 +00:00
25 lines
530 B
YAML
25 lines
530 B
YAML
name: Deploy | GH Pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Install project
|
|
run: yarn install
|
|
- name: Install Quasar CLI
|
|
run: yarn global add @quasar/cli
|
|
- name: Build
|
|
run: quasar build
|
|
- name: Deploy to GH pages
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: dist/spa
|