Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .github/workflows/code_changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ jobs:
args: ". -l 79 --check"
Test:
permissions:
contents: "read"
# Required to auth against gcp
id-token: "write"
contents: "write" # Required for auth with Github Pages deploy
id-token: "write" # Required for auth with GCP
runs-on: ubuntu-latest
steps:
- name: Checkout repo
Expand Down Expand Up @@ -62,10 +61,9 @@ jobs:
run: make upload
- name: Test documentation builds
run: make documentation
- name: Deploy documentation
uses: JamesIves/github-pages-deploy-action@releases/v3
- name: Deploy Github Pages documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: docs/_build/html # The folder the action should deploy.
CLEAN: true # Optionally delete the contents of the release branch before deploying.
branch: gh-pages
folder: docs/_build/html
clean: true
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
fixed:
- Github pages deploy
Loading