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 9778a2b commit 45e38c3Copy full SHA for 45e38c3
.github/workflows/update_docs.yml
@@ -17,17 +17,20 @@ jobs:
17
18
- name: Checkout libdebug gh-pages
19
uses: actions/checkout@v4
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
with:
23
repository: libdebug/libdebug
24
ref: gh-pages
- path: /tmp/libdebug-pages
25
+ path: libdebug-pages
26
fetch-depth: 1
27
token: ${{ secrets.GITHUB_TOKEN }}
28
29
- name: Sync files
30
run: |
- rsync -av /tmp/libdebug-pages/ ./ \
- --exclude '.git' --exclude '.github/**' --exclude 'CNAME'
31
+ rsync -av libdebug-pages/ ./ \
32
+ --exclude '.git' --exclude '.github/**'
33
+ rm -rf libdebug-pages
34
35
- name: Commit & push
36
env:
0 commit comments