Skip to content

Commit

Permalink
skip ci: Changed to _site (no quotes) in documentation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
adrenak committed Dec 15, 2024
1 parent cc32711 commit a72f54b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/documention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
- name: Upload site artifact
uses: actions/upload-artifact@v4
with:
name: "_site"
path: "_site" # Must equals the 'build.dest' value on your docfx.json
name: _site
path: _site # Must equals the 'build.dest' value on your docfx.json

# Deploy the generated documentation to the gh-pages branch
deploy:
Expand All @@ -48,11 +48,11 @@ jobs:
- name: Download site artifact
uses: actions/download-artifact@v4
with:
name: "_site"
name: _site

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: "_site"
publish_dir: _site

0 comments on commit a72f54b

Please sign in to comment.