We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e164dd commit 691879aCopy full SHA for 691879a
1 file changed
.github/workflows/deploy-site.yml
@@ -3,7 +3,6 @@ name: Deploy Site
3
on:
4
push:
5
branches: [main]
6
- paths: [site/**]
7
workflow_dispatch:
8
9
permissions:
@@ -20,6 +19,7 @@ jobs:
20
19
runs-on: ubuntu-latest
21
steps:
22
- uses: actions/checkout@v4
+ - uses: actions/configure-pages@v5
23
24
- uses: actions/setup-node@v4
25
with:
@@ -33,6 +33,12 @@ jobs:
33
- run: npm run build
34
working-directory: site
35
36
+ - name: Verify build artifact looks like site app
37
+ run: |
38
+ test -f site/dist/index.html
39
+ rg 'id="root"' site/dist/index.html
40
+ touch site/dist/.nojekyll
41
+
42
- uses: actions/upload-pages-artifact@v3
43
44
path: site/dist
0 commit comments