Skip to content

address #609, fix random item editions #623

address #609, fix random item editions

address #609, fix random item editions #623

Workflow file for this run

name: Publish Latest Online Version
on:
workflow_dispatch:
push:
tags:
- "v*"
- "!v*-*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v4
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@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install and npm run build
run: |
npm i
npm run build
- name: Publish via scp
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USER }}
port: ${{ secrets.PORT }}
key: ${{ secrets.KEY }}
source: "./dist/gloomhavensecretariat/*"
strip_components: 2
rm : true
target: "${{ secrets.TARGET }}"