Skip to content

chore: app would not be tagged since recent update of changesets #32

chore: app would not be tagged since recent update of changesets

chore: app would not be tagged since recent update of changesets #32

Workflow file for this run

name: GitHub Pages
on:
workflow_dispatch:
push:
tags:
- "**"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm ci
- run: npm run build
working-directory: ./packages/app
- run: "echo 'shacl-playground.zazuko.com' > dist/CNAME"
working-directory: ./packages/app
- name: GitHub Pages
uses: crazy-max/ghaction-github-pages@v4.0.0
with:
build_dir: ./packages/app/dist
jekyll: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}