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