We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10fb1b2 commit 85eeb64Copy full SHA for 85eeb64
1 file changed
.github/workflows/publish.yaml
@@ -0,0 +1,26 @@
1
+name: Publish GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - pages
7
8
+jobs:
9
+ deploy:
10
+ environment:
11
+ name: github-pages
12
+ url: ${{steps.deployment.outputs.page_url}}
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
+ - name: Setup Pages
18
+ uses: actions/configure-pages@v5
19
+ - name: Upload Artifact
20
+ uses: actions/upload-pages-artifact@v3
21
+ with:
22
+ # upload entire directory
23
+ path: '.'
24
+ - name: Deploy to GitHub Pages
25
+ id: deployment
26
+ uses: actions/deploy-pages@v4
0 commit comments