Skip to content

Commit 715f1fb

Browse files
authored
Update deploy.yml (#48)
1 parent 06cb0f1 commit 715f1fb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@ jobs:
3030
- name: Install Antora
3131
run: npm i antora
3232
- name: Generate Site
33-
run: npx antora antora-playbook.yml
33+
run: |
34+
mkdir -p build/site
35+
npx antora antora-playbook.yml
3436
- name: Upload Artifacts
3537
uses: actions/upload-pages-artifact@v3
3638
with:
3739
path: build/site
3840
- name: Deploy to GitHub Pages
3941
id: deployment
4042
uses: actions/deploy-pages@v2
43+
with:
44+
artifact_name: github-pages

0 commit comments

Comments
 (0)