Skip to content

Make actions actually do something useful again #364

Make actions actually do something useful again

Make actions actually do something useful again #364

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- gh-pages
workflow_dispatch:
pull_request:
jobs:
build:
name: Build and Upload
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: '0'
persist-credentials: false
submodules: 'recursive'
- name: Setup Node
uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Build
run: npm install && npm run build
- name: Upload Build
uses: actions/upload-pages-artifact@v3
with:
path: docs