Skip to content

Commit 23f6754

Browse files
committed
[exoframe-website] Add missing persmissions to github action config
1 parent 6c733c7 commit 23f6754

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/website.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
name: Website to Github pages
22
# deploy website to github pages on push
33
on:
4+
# Runs on pushes targeting the default branch
45
push:
5-
branches: '*'
6+
branches: 'main'
7+
8+
# Allows us to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
11+
# Set permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
616

717
jobs:
818
deploy-website:

0 commit comments

Comments
 (0)