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 4367934 + 40acd2f commit 59cf317Copy full SHA for 59cf317
2 files changed
.github/workflows/pr.yml
@@ -0,0 +1,23 @@
1
+name: Deploy PR previews
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - reopened
8
+ - synchronize
9
+ - closed
10
11
+concurrency: preview-${{ github.ref }}
12
13
+jobs:
14
+ deploy-preview:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v6
19
20
+ - name: Deploy preview
21
+ uses: rossjrw/pr-preview-action@v1
22
+ with:
23
+ source-dir: .
.github/workflows/static.yml
@@ -0,0 +1,16 @@
+name: Deploy
+ push:
+ branches:
+ - main
+ deploy:
+ - uses: actions/checkout@v6
+ - uses: JamesIves/github-pages-deploy-action@v4
+ folder: .
+ branch: gh-pages
+ clean-exclude: pr-preview
+ force: false
0 commit comments