Skip to content

Try to fix deploy permission #6

Try to fix deploy permission

Try to fix deploy permission #6

Workflow file for this run

name: Deploy SolidJS site to Pages
on:
push:
branches: [ solidjs ]
pull_request:
branches: [ solidjs ]
workflow_dispatch:
permissions:
contents: write
pages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install
run: npm i --legacy-peer-deps
- name: build
run: npm run build
env:
BASE_PATH: /hakuzumon.github.io/
- name: create .nojekyll
run: touch .output/public/.nojekyll
- name: deploy pages
uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
branch: gh-pages
folder: .output/public