Skip to content

Commit

Permalink
Fixed wrong path in action building downloadable docs (#3450)
Browse files Browse the repository at this point in the history
* fixed wrong path in action building downloadable docs

* fix second occurrence of wrong path
  • Loading branch information
behackl authored Nov 12, 2023
1 parent e66c580 commit 4315549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-publish-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Store artifacts
uses: actions/upload-artifact@v3
with:
path: ${{ github.workspace }}/manim/docs/build/html-docs.tar.gz
path: ${{ github.workspace }}/docs/build/html-docs.tar.gz
name: html-docs.tar.gz

- name: Install Dependency
Expand Down Expand Up @@ -79,6 +79,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/manim/docs/build/html-docs.tar.gz
asset_path: ${{ github.workspace }}/docs/build/html-docs.tar.gz
asset_name: manim-htmldocs-${{ steps.create_release.outputs.tag_name }}.tar.gz
asset_content_type: application/gzip

0 comments on commit 4315549

Please sign in to comment.