We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81739dc commit f38cc28Copy full SHA for f38cc28
.github/workflows/deploy-website.yml
@@ -16,7 +16,7 @@ jobs:
16
17
strategy:
18
matrix:
19
- node-version: [18.x, 20.x]
+ node-version: [20.x]
20
21
steps:
22
- uses: actions/checkout@v4
@@ -40,12 +40,15 @@ jobs:
40
- name: Install Docusaurus dependencies
41
run: yarn install
42
43
- - name: Build website
+ - name: Build Antora
44
+ continue-on-error: true
45
run: |
46
cd antora
47
npx antora antora-playbook.yml --stacktrace
- cd ..
48
- yarn build
+
49
+ - name: Build Docusaurus
50
+ # continue-on-error: true
51
+ run: yarn build
52
53
- name: Deploy to GitHub Pages
54
run: yarn deploy
0 commit comments