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 06cb0f1 commit 715f1fbCopy full SHA for 715f1fb
.github/workflows/deploy.yml
@@ -30,11 +30,15 @@ jobs:
30
- name: Install Antora
31
run: npm i antora
32
- name: Generate Site
33
- run: npx antora antora-playbook.yml
+ run: |
34
+ mkdir -p build/site
35
+ npx antora antora-playbook.yml
36
- name: Upload Artifacts
37
uses: actions/upload-pages-artifact@v3
38
with:
39
path: build/site
40
- name: Deploy to GitHub Pages
41
id: deployment
42
uses: actions/deploy-pages@v2
43
+ with:
44
+ artifact_name: github-pages
0 commit comments