Skip to content

Report path prefix

Report path prefix #6

Workflow file for this run

name: Generate Static Site
on:
push:
branches:
- trunk
jobs:
# Build job
build:
runs-on: ubuntu-latest
permissions:
contents: write # to deploy to Pages
env:
REPO: ${{ github.repository }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Generate static site
run: PATH_PREFIX=/$(echo ${{ env.REPO }} | cut -d'/' -f1)/ node generate-static-site.js
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out