Skip to content

Commit 30a38e7

Browse files
committed
Fix workflows wrt linkcheck addition
1 parent 935ce3e commit 30a38e7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ jobs:
2525
uses: peaceiris/actions-gh-pages@v3
2626
with:
2727
github_token: ${{ secrets.GITHUB_TOKEN }}
28-
publish_dir: ./book
28+
publish_dir: ./book/html
2929
destination_dir: beta

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
uses: peaceiris/actions-gh-pages@v3
2626
with:
2727
github_token: ${{ secrets.GITHUB_TOKEN }}
28-
publish_dir: ./book
28+
publish_dir: ./book/html

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222

2323
- name: Compress book
2424
run: zip -r -9 crp.zip *
25-
working-directory: book
25+
working-directory: book/html
2626

2727
- name: Release book
2828
uses: softprops/action-gh-release@v2
2929
with:
3030
files: |
31-
book/crp.zip
31+
book/html/crp.zip

0 commit comments

Comments
 (0)