Skip to content

Commit 4315549

Browse files
authored
Fixed wrong path in action building downloadable docs (#3450)
* fixed wrong path in action building downloadable docs * fix second occurrence of wrong path
1 parent e66c580 commit 4315549

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-publish-documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Store artifacts
4343
uses: actions/upload-artifact@v3
4444
with:
45-
path: ${{ github.workspace }}/manim/docs/build/html-docs.tar.gz
45+
path: ${{ github.workspace }}/docs/build/html-docs.tar.gz
4646
name: html-docs.tar.gz
4747

4848
- name: Install Dependency
@@ -79,6 +79,6 @@ jobs:
7979
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8080
with:
8181
upload_url: ${{ steps.create_release.outputs.upload_url }}
82-
asset_path: ${{ github.workspace }}/manim/docs/build/html-docs.tar.gz
82+
asset_path: ${{ github.workspace }}/docs/build/html-docs.tar.gz
8383
asset_name: manim-htmldocs-${{ steps.create_release.outputs.tag_name }}.tar.gz
8484
asset_content_type: application/gzip

0 commit comments

Comments
 (0)