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.
2 parents 94735b7 + 3b2c94c commit f01a0f5Copy full SHA for f01a0f5
1 file changed
.github/workflows/pages.yml
@@ -0,0 +1,33 @@
1
+name: Deploy catalogue to Pages
2
+
3
+on:
4
+ push:
5
+ branches: [main] # change if your default branch is different
6
+ workflow_dispatch:
7
8
+permissions:
9
+ contents: read
10
+ pages: write
11
+ id-token: write
12
13
+concurrency:
14
+ group: pages
15
+ cancel-in-progress: false
16
17
+jobs:
18
+ deploy:
19
+ environment:
20
+ name: github-pages
21
+ url: ${{ steps.deployment.outputs.page_url }}
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/checkout@v4
25
26
+ - uses: actions/configure-pages@v5
27
28
+ - uses: actions/upload-pages-artifact@v3
29
+ with:
30
+ path: ./catalogue
31
32
+ - id: deployment
33
+ uses: actions/deploy-pages@v4
0 commit comments