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.
1 parent 4a5c502 commit 00ce219Copy full SHA for 00ce219
.github/workflows/ci.yml
@@ -1,5 +1,8 @@
1
name: ci-push
2
-on: [push]
+on:
3
+ push:
4
+ branches-ignore:
5
+ - staging
6
jobs:
7
format-check:
8
runs-on: ubuntu-latest
.github/workflows/deploy.yml
@@ -3,6 +3,7 @@ on:
push:
branches:
- main
deploy:
9
@@ -24,12 +25,13 @@ jobs:
24
25
run: |
26
cd guide
27
mdbook build
28
+ ls book
29
- name: setup pages
30
uses: actions/configure-pages@v4
31
- name: upload artifact
32
uses: actions/upload-pages-artifact@v3
33
with:
- path: 'book'
34
+ path: 'guide/book'
35
- name: Deploy to GitHub Pages
36
id: deployment
37
uses: actions/deploy-pages@v4
0 commit comments