Skip to content

v1.6.2

v1.6.2 #16

Workflow file for this run

name: Deploy to Github Pages
on:
release:
types: [published]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: |
npm ci
- name: Lint
env:
USERSCRIPTER_MODE: production
NODE_ENV: production
run: |
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
BRANCH: gh-pages
FOLDER: dist