We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 363f6c0 commit 1c11a2bCopy full SHA for 1c11a2b
1 file changed
.github/workflows/build_docs.yml
@@ -2,14 +2,24 @@
2
name: Deploy static content to Pages
3
4
on:
5
+ # Runs on pushes targeting the default branch
6
push:
- branches: ["main"]
7
- pull_request:
8
+ branches:
+ - "**"
9
10
- # Allows you to run this workflow manually from the Actions tab
+ # Allows you to run this workflow manually from the Actions tab
11
workflow_dispatch:
12
- workflow_call:
+
13
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
14
+permissions:
15
+ contents: read
16
+ pages: write
17
+ id-token: write
18
19
+# Allow one concurrent deployment
20
+concurrency:
21
+ group: "pages"
22
+ cancel-in-progress: true
23
24
jobs:
25
build:
0 commit comments