2021-05-30 12:12:29 +04:00
|
|
|
name: Github Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2022-03-14 06:46:40 +04:00
|
|
|
tags:
|
|
|
|
- '*'
|
2021-05-30 12:12:29 +04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-05 17:51:19 +04:00
|
|
|
- uses: actions/checkout@v4
|
2021-05-30 12:12:29 +04:00
|
|
|
|
|
|
|
- name: Setup mdBook
|
2024-04-09 04:41:41 +04:00
|
|
|
uses: peaceiris/actions-mdbook@v2
|
2021-05-30 12:12:29 +04:00
|
|
|
with:
|
|
|
|
mdbook-version: 'latest'
|
|
|
|
# mdbook-version: '0.4.8'
|
|
|
|
|
|
|
|
- run: mdbook build book
|
2022-03-14 06:46:40 +04:00
|
|
|
|
|
|
|
- name: Set output directory
|
|
|
|
run: |
|
|
|
|
OUTDIR=$(basename ${{ github.ref }})
|
|
|
|
echo "OUTDIR=$OUTDIR" >> $GITHUB_ENV
|
2021-05-30 12:12:29 +04:00
|
|
|
|
2023-10-26 18:07:36 +04:00
|
|
|
- name: Deploy stable
|
2024-04-09 04:41:11 +04:00
|
|
|
uses: peaceiris/actions-gh-pages@v4
|
2023-10-26 18:07:36 +04:00
|
|
|
if: startswith(github.ref, 'refs/tags/')
|
2022-03-14 06:46:40 +04:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./book/book
|
|
|
|
|
2023-10-26 18:07:36 +04:00
|
|
|
- name: Deploy
|
2024-04-09 04:41:11 +04:00
|
|
|
uses: peaceiris/actions-gh-pages@v4
|
2021-05-30 12:12:29 +04:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./book/book
|
2023-10-26 18:07:36 +04:00
|
|
|
destination_dir: ./${{ env.OUTDIR }}
|