Skip to content

Rework page relative href resolving #39

Rework page relative href resolving

Rework page relative href resolving #39

Workflow file for this run

name: Continuous Deployment
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- name: Build
run: npm run build
- name: Add CNAME
run: echo 'pfiers.net' > build/CNAME
- name: Add .nojekyll
run: touch build/.nojekyll
- name: Deploy
uses: s0/[email protected]
env:
REPO: self
BRANCH: build
FOLDER: build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}