There was an error while loading. Please reload this page.
1 parent 6c733c7 commit 23f6754Copy full SHA for 23f6754
.github/workflows/website.yml
@@ -1,8 +1,18 @@
1
name: Website to Github pages
2
# deploy website to github pages on push
3
on:
4
+ # Runs on pushes targeting the default branch
5
push:
- 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
16
17
jobs:
18
deploy-website:
0 commit comments