Skip to content

4.1.0

4.1.0 #33

Workflow file for this run

name: Deploy GH Pages
on:
release:
types:
- released
workflow_dispatch:
jobs:
deploy:
name: Deploy GitHup Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm install
- name: Run Build
run: npm run build
- name: Run Build Web
run: npm run build:web
- name: Deploy
uses: JamesIves/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: packages/uhk-web/dist
clean: true