We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f0023 commit 71599bdCopy full SHA for 71599bd
1 file changed
.github/workflows/deploy-wireframes.yml
@@ -0,0 +1,36 @@
1
+name: Deploy wireframes to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - 'wireframes/**'
8
+ - '.github/workflows/deploy-wireframes.yml'
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
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - name: Checkout
24
+ uses: actions/checkout@v4
25
26
+ - name: Setup Pages
27
+ uses: actions/configure-pages@v4
28
29
+ - name: Upload artifact
30
+ uses: actions/upload-pages-artifact@v3
31
+ with:
32
+ path: wireframes
33
34
+ - name: Deploy to GitHub Pages
35
+ id: deployment
36
+ uses: actions/deploy-pages@v4
0 commit comments