Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Aug 5, 2024
1 parent 6749dca commit 655d568
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,20 @@ jobs:
needs: [build-jekyll, build-doxygen]
steps:
- name: Download Artifacts
uses: actions/download-pages-artifact@v2
uses: actions/download-artifact@v3
with:
name: jekyll-site-${{ github.run_number }}-${{ github.run_id }}
- name: Download Doxygen Docs
uses: actions/download-artifact@v3
with:
name: doxygen-docs-${{ github.run_number }}-${{ github.run_id }}

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_branch: gh-pages
keep_files: true

0 comments on commit 655d568

Please sign in to comment.