This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7570bf
commit 019b117
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
- name: Setup mdBook | ||
uses: peaceiris/actions-mdbook@v1 | ||
with: | ||
mdbook-version: 'latest' | ||
mdbook-version: "latest" | ||
|
||
- run: mdbook build guide | ||
|
||
|
@@ -30,17 +30,17 @@ jobs: | |
|
||
- name: Deploy | ||
if: github.ref == 'refs/heads/main' | ||
uses: peaceiris/[email protected].0-6 | ||
uses: peaceiris/[email protected].3 | ||
with: | ||
personal_token: ${{ secrets.PERSONAL_TOKEN }} | ||
personal_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./guide/book | ||
keep_files: false | ||
|
||
- name: Deploy | ||
if: github.ref == 'refs/heads/main' | ||
uses: peaceiris/[email protected].0-6 | ||
uses: peaceiris/[email protected].3 | ||
with: | ||
personal_token: ${{ secrets.PERSONAL_TOKEN }} | ||
personal_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./target/doc | ||
destination_dir: ./docs | ||
keep_files: true |