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 de544a5 commit 524f565Copy full SHA for 524f565
.github/workflows/docs.yml
@@ -3,7 +3,7 @@ name: Dotty the Documenteer
3
on:
4
push:
5
branches:
6
- - master
+ - doc
7
paths:
8
- 'doc/**'
9
- 'README.md'
@@ -51,7 +51,7 @@ jobs:
51
path: site/
52
53
deploy:
54
- if: github.ref == 'refs/heads/master' && github.event_name == 'push'
+ if: github.ref == 'refs/heads/doc' && github.event_name == 'push'
55
needs: build
56
runs-on: ubuntu-latest
57
@@ -78,7 +78,9 @@ jobs:
78
79
- name: Sync site to pages repo
80
run: |
81
- rsync -a --delete --exclude .git site/ pages/
+ rsync -a --delete --filter='P .git' --filter='P .git/**' site/ pages/
82
+ ls -l pages/.git
83
+ git -C pages status
84
85
- name: Commit and push
86
0 commit comments