axmol/.github/workflows/site.yml

50 lines
1.2 KiB
YAML
Raw Normal View History

name: site
2021-07-06 14:40:51 +08:00
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
2021-07-07 02:42:04 +08:00
branches:
- dev
2021-07-06 14:40:51 +08:00
paths:
2021-12-31 14:39:08 +08:00
- core/**/*
2021-07-06 14:40:51 +08:00
- docs/**/*
- .github/workflows/site.yml
- tools/ci/build-site.ps1
2023-06-12 11:25:23 +08:00
workflow_dispatch:
2021-07-06 14:40:51 +08:00
jobs:
build-site:
2021-07-06 14:40:51 +08:00
runs-on: ubuntu-latest
steps:
2022-10-20 22:20:33 +08:00
- uses: actions/checkout@v3
2023-08-25 19:37:04 +08:00
with:
fetch-depth: 0
2021-07-06 14:40:51 +08:00
- name: Build HTML site
2023-06-29 19:46:52 +08:00
shell: pwsh
2023-09-01 13:36:23 +08:00
run: |
$env:AX_DOCS_TOKEN = '${{ secrets.AX_BOT_TOKEN }}'
./tools/ci/build-site.ps1
2021-07-06 14:40:51 +08:00
# Deploy HTML site to GitHub Pages
2021-07-06 14:40:51 +08:00
- name: GH Pages Deployment
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2023-08-31 21:20:01 +08:00
publish_dir: ./docs/dist/
2021-07-06 14:40:51 +08:00
enable_jekyll: false
allow_empty_commit: false
force_orphan: true
publish_branch: gh-pages
2023-09-11 20:24:21 +08:00
# Deploy HTML site to netlify Pages
- name: Netlify Pages Deployment
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/dist2/
enable_jekyll: false
allow_empty_commit: false
force_orphan: true
publish_branch: netlify-pages