mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 00:38:08 +08:00

Squashed commit of the following: commit c0b2ff1cd5de60c467d22a9174c0b8439f234b34 Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 12:27:58 2024 +0900 ci: turn on ci commit 41f6e1d4d710b841580c0a34126cbdc5c95203b0 Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 12:27:44 2024 +0900 refactor: remove debug dumps commit d037e26a5a77102168f9c30694e158e8388bddb6 Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 12:19:43 2024 +0900 fix: avoid taking next of end commit 0ce5565686a0f684d61dc55014e4cd670ecbfc87 Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 12:14:04 2024 +0900 ci(WIP): add more debug dumps commit e7ebef57d5d463ff591c37c120a1bed93824a7ba Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 00:41:36 2024 +0900 ci(WIP): add more debug dumps commit 8e3488e038d5241af14dab334bedbae911bc6d29 Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 00:33:52 2024 +0900 ci(WIP): add iostream commit 4198d1274c5a8701df885f5fb36ef1d54ea9b18e Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 00:32:13 2024 +0900 ci(WIP): add debug dumps commit 1c87d24743f9b3228c7ed216e9e2a4d7cb588f6d Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 00:06:11 2024 +0900 ci: disable ci jobs except msvc commit 605ee1e7635c7f99f150ede70360d0ca792de7c0 Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sun Jun 16 00:06:00 2024 +0900 ci(WIP): add debug dumps commit 2851b22246fc87fa26ac8d4d708dccf02fd3dbee Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sat Jun 15 23:59:06 2024 +0900 chore: mark interface for interface lib commit 74e5e49d2c1540d055e8397b3ce5d7b22dc50288 Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sat Jun 15 23:53:50 2024 +0900 chore: add required options for MSVC commit 5ec385753473d1535b769299c66438eed929330a Author: ToruNiina <niina.toru.68u@gmail.com> Date: Sat Jun 15 23:53:34 2024 +0900 ci: fix typo after copy-paste
35 lines
834 B
YAML
35 lines
834 B
YAML
name: document
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: Ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Install Hugo
|
|
uses: peaceiris/actions-hugo@v3
|
|
with:
|
|
hugo-version: 'latest'
|
|
extended: true
|
|
- name: Build Webpage
|
|
working-directory: ./docs/
|
|
run: |
|
|
hugo mod init github.com/alex-shpak/hugo-book
|
|
hugo mod get -u
|
|
hugo --minify
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_branch: gh-pages
|
|
publish_dir: ./book/public
|
|
force_orphan: true
|
|
commit_message: ${{ github.event.head_commit.message }}
|