2022-12-10 06:07:56 +08:00
|
|
|
name: deploy-github-page
|
2021-08-02 05:51:00 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: twtug/lkmpg
|
|
|
|
|
|
|
|
steps:
|
2023-09-18 02:05:28 +08:00
|
|
|
- uses: actions/checkout@v4
|
2021-08-02 05:51:00 +08:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
make html
|
|
|
|
- name: Deploy to gh-pages branch
|
2023-09-18 02:05:28 +08:00
|
|
|
uses: peaceiris/actions-gh-pages@v3.9.3
|
2021-08-02 05:51:00 +08:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./html
|
|
|
|
publish_branch: gh-pages
|