25 lines
493 B
YAML
Raw Normal View History

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
2020-01-03 23:01:29 +01:00
- name: Build
run: |
npm ci
npm run build
2020-01-03 23:01:29 +01:00
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{secrets.GH_DEPLOY}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
BRANCH: gh-pages
FOLDER: build