material-web/.github/workflows/deploy-demos.yml
Alexander Marks 16ee9407f7 Bump CI Node version from 12 to 14
14 is active LTS, 12 is maintenance LTS.
2021-09-17 11:45:59 -07:00

26 lines
582 B
YAML

name: Build and Deploy Demos
on:
push:
branches: master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Install and Build
run: |
npm install
npm run build
npm run build:demos
- name: Deploy Demos
uses: JamesIves/github-pages-deploy-action@3.4.9
with:
ACCESS_TOKEN: ${{ secrets.TEDIUM_BOT_GITHUB_ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: dist