Skip to content

Commit

Permalink
fix docs name
Browse files Browse the repository at this point in the history
  • Loading branch information
ssheorey committed Jan 13, 2025
1 parent cc2ad95 commit adf22b3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,17 @@ jobs:
-t open3d-ci:docs -f docker/Dockerfile.docs .
docker run -v "${GITHUB_WORKSPACE}:/opt/mount" --rm open3d-ci:docs \
bash -c "cp /root/Open3D/open3d-*-docs.tar.* /opt/mount \
&& chown $(id -u):$(id -g) /opt/mount/open3d-*-docs.tar.*"
bash -c "cp /root/Open3D/open3d-*-docs.tar.gz /opt/mount \
&& chown $(id -u):$(id -g) /opt/mount/open3d-*-docs.tar.gz"
# Rename from Github PR branch SHA to original branch SHA, if needed.
mv open3d-*-docs.tar.gz open3d-${GITHUB_SHA}-docs.tar.gz

- name: Upload docs
uses: actions/upload-artifact@v4
with:
name: open3d-${{ github.sha }}-docs.tar
path: open3d-${{ github.sha }}-docs.tar.*
name: open3d-${{ github.sha }}-docs
path: open3d-${{ github.sha }}-docs.tar.gz
if-no-files-found: error
compression-level: 0 # no compression

Expand Down

0 comments on commit adf22b3

Please sign in to comment.