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 32a4af9 + ee65eac commit d9336eaCopy full SHA for d9336ea
.github/workflows/deploy_to_pages.yml
@@ -0,0 +1,28 @@
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
+ build-and-deploy:
14
+ concurrency: ci-${{ github.ref }}
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - name: Install and Build
21
+ run: |
22
+ npm install
23
+ npm run build
24
25
+ - name: Deploy
26
+ uses: JamesIves/github-pages-deploy-action@v4
27
+ with:
28
+ folder: dist # The folder the build script generates
0 commit comments