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 6dbf571 commit 8e80055Copy full SHA for 8e80055
.github/workflows/deploy-webapp.yml
@@ -0,0 +1,31 @@
1
+name: Deploy to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
7
+permissions:
8
+ contents: read
9
+ pages: write
10
+ id-token: write
11
12
+jobs:
13
+ deploy:
14
+ runs-on: ubuntu-latest
15
+ environment:
16
+ name: github-pages
17
+ url: ${{ steps.deployment.outputs.page_url }}
18
+ steps:
19
+ - uses: actions/checkout@v4
20
21
+ - name: Setup Pages
22
+ uses: actions/configure-pages@v4
23
24
+ - name: Upload artifact
25
+ uses: actions/upload-pages-artifact@v3
26
+ with:
27
+ path: './advanced/webapp'
28
29
+ - name: Deploy to GitHub Pages
30
+ id: deployment
31
+ uses: actions/deploy-pages@v4
0 commit comments