From 7c1d68c8289cfb122d481806316e05eeefad8c49 Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Mon, 8 Jan 2024 16:20:44 +0900 Subject: [PATCH] fix(book): adjust path for the .nojekyll file The creation of the `.nojekyll` file was off, due to the previous `cd` into the book folder. --- .github/workflows/book.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 8a6ae70..c62e511 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -31,7 +31,7 @@ jobs: - name: Build book run: | cd book && bun run build - touch book/.vitepress/dist/.nojekyll + touch .vitepress/dist/.nojekyll - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: