Skip to content

trigger deploy

trigger deploy #53

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
steps:
- uses: actions/checkout@v4 # This action checks out your repository
- name: Run gen_static.sh script
run: sh gen_static.sh
- name: Debug Git State
run: |
git remote show origin
git ls-remote --refs origin
- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: static
clean: true
force: true