diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 168f27a1..00f7ef71 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -24,8 +24,6 @@ jobs: echo `pwd`/mdbook >> $GITHUB_PATH - name: Build Book run: | - # This assumes your book is in the root of your repository. - # Just add a `cd` here if you need to change to another directory. cd doc mdbook build - name: Setup Pages @@ -33,8 +31,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - # Upload entire repository - path: "book" + path: "doc/book" - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 4f941cd2..3e919761 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -10,6 +10,7 @@ on: - ".github/**" - "!.github/workflows/docker.yml" - ".vscode/**" + - "doc/**" - ".gitignore" - "LICENSE" - "README" diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 34aa403e..6901b99e 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -2,6 +2,14 @@ name: Rust build, test, and generate specification on: push: + paths-ignore: + - ".github/**" + - "!.github/workflows/rust.yaml" + - ".vscode/**" + - "doc/**" + - ".gitignore" + - "LICENSE" + - "README" pull_request: branches: [main]