2020-01-03 23:01:29 +01:00
|
|
|
name: Deploy to GitHub Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
jobs:
|
|
|
|
build-and-deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
npm ci
|
2020-01-03 23:28:33 +01:00
|
|
|
npm run build
|
2020-01-03 23:01:29 +01:00
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
|
|
|
with:
|
2020-01-05 14:08:09 +01:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GH_DEPLOY }}
|
2020-01-05 14:11:36 +01:00
|
|
|
BRANCH: gh-pages
|
2020-01-03 23:04:38 +01:00
|
|
|
FOLDER: build
|