We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9288c20 commit 02bce6cCopy full SHA for 02bce6c
1 file changed
.github/workflows/deployInstallScript.yaml
@@ -0,0 +1,37 @@
1
+# Simple workflow for deploying static content to GitHub Pages
2
+name: Deploy Install script to pages
3
+
4
+on:
5
+ push:
6
+ branches: ["main"]
7
8
+ workflow_dispatch:
9
10
+permissions:
11
+ contents: read
12
+ pages: write
13
+ id-token: write
14
15
+concurrency:
16
+ group: "pages"
17
+ cancel-in-progress: false
18
19
+jobs:
20
+ deploy:
21
+ environment:
22
+ name: github-pages
23
+ url: ${{ steps.deployment.outputs.page_url }}
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - name: Checkout
27
+ uses: actions/checkout@v4
28
+ - name: Setup Pages
29
+ uses: actions/configure-pages@v5
30
+ - name: Upload artifact
31
+ uses: actions/upload-pages-artifact@v3
32
+ with:
33
+ path: 'install/'
34
+ - name: Deploy to GitHub Pages
35
+ id: deployment
36
+ uses: actions/deploy-pages@v4
37
0 commit comments