Skip to content

Commit

Permalink
Move permissions into job
Browse files Browse the repository at this point in the history
- hopefully fixes documentation generation, see #1152
  • Loading branch information
mrbean-bremen committed Apr 2, 2024
1 parent d9380e5 commit 18ab544
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/builddocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ on:
branches:
- master

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
Expand All @@ -25,6 +19,14 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: windows-latest

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
id-token: write
contents: read
pages: write
actions: read

steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -45,4 +47,4 @@ jobs:
path: 'Docs/_site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4

0 comments on commit 18ab544

Please sign in to comment.