diff --git a/.github/workflows/code_changes.yaml b/.github/workflows/code_changes.yaml index b752e953..ffcafc6e 100644 --- a/.github/workflows/code_changes.yaml +++ b/.github/workflows/code_changes.yaml @@ -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 @@ -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 diff --git a/changelog_entry.yaml b/changelog_entry.yaml index e69de29b..c5c01c6e 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -0,0 +1,4 @@ +- bump: patch + changes: + fixed: + - Github pages deploy