We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a8142 commit 57dc4fdCopy full SHA for 57dc4fd
1 file changed
.github/workflows/build.yml
@@ -8,12 +8,17 @@ on:
8
repository_dispatch:
9
types: [run_build]
10
11
+permissions:
12
+ contents: write
13
+
14
jobs:
15
deploy-docs:
16
runs-on: ubuntu-latest
17
container: asciidoctor/docker-asciidoctor
18
steps:
19
- uses: actions/checkout@v5
20
+ with:
21
+ fetch-depth: 0
22
23
- name: Install dependencies
24
run: |
@@ -24,9 +29,10 @@ jobs:
29
asciidoctor docs/index.adoc
25
30
find . -name .adoc -exec rm -rf '{}' \;
26
31
- name: Deploy 🚀
27
- uses: JamesIves/github-pages-deploy-action@v4.2.5
32
+ uses: JamesIves/github-pages-deploy-action@v4.7.3
28
33
if: contains(github.ref,'refs/heads/main')
34
with:
35
branch: gh-pages
36
folder: docs
- clean: true
37
+ clean: true
38
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments