From 4315549c31747231eb6e5aead5408e3b2fe4de16 Mon Sep 17 00:00:00 2001 From: Benjamin Hackl Date: Sun, 12 Nov 2023 10:42:37 +0100 Subject: [PATCH] Fixed wrong path in action building downloadable docs (#3450) * fixed wrong path in action building downloadable docs * fix second occurrence of wrong path --- .github/workflows/release-publish-documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-publish-documentation.yml b/.github/workflows/release-publish-documentation.yml index 56b68eef52..a167942db0 100644 --- a/.github/workflows/release-publish-documentation.yml +++ b/.github/workflows/release-publish-documentation.yml @@ -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 @@ -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