Skip to content

address #355, fix sync error with scenario finish, small fixes on obj… #497

address #355, fix sync error with scenario finish, small fixes on obj…

address #355, fix sync error with scenario finish, small fixes on obj… #497

Workflow file for this run

name: Release Page
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and npm run build
run: |
npm i
npm run build -- --base-href gloomhavensecretariat
- name: Publish GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./dist/gloomhavensecretariat/
github_token: ${{ secrets.TOKEN }}