Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ssheorey committed May 4, 2024
1 parent 2d66bb2 commit 7b4e996
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
gh release upload main-devel open3d-devel-*.tar.gz --clobber || true
gh release upload main-devel open3d-devel-*.tar.xz --clobber || true
gh release upload main-devel open3d-viewer-*-Linux.deb --clobber || true
gh release view main-devel
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
run: |
$Env:OPEN3D_VERSION_FULL = (Select-String -Path "C:/Open3D/build/CMakeCache.txt" -Pattern "OPEN3D_VERSION_FULL").Line.Split('=')[1]
Compress-Archive -Path C:\Program Files\Open3D\bin\Open3D -DestinationPath `
Compress-Archive -Path "C:/Program Files/Open3D/bin/Open3D" -DestinationPath `
"open3d-$Env:OPEN3D_VERSION_FULL-app-windows-amd64.zip"
gh release upload main-devel "open3d-$Env:OPEN3D_VERSION_FULL-app-windows-amd64.zip" --clobber
gh release view main-devel
Expand Down
2 changes: 1 addition & 1 deletion cpp/apps/Open3DViewer/Debian/CMakeLists.in.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ set(CPACK_PACKAGE_NAME "open3d-viewer")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Open3D Viewer for 3D files")
set(CPACK_PACKAGE_CONTACT "Open3D team <@PROJECT_EMAIL@>")
set(CPACK_DEBIAN_PACKAGE_SECTION "Graphics")
set(CPACK_PACKAGE_VERSION "@OPEN3D_VERSION@")
set(CPACK_PACKAGE_VERSION "@OPEN3D_VERSION_FULL@")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc++1, libgomp1, libpng16-16, libglfw3")
set(CPACK_PACKAGE_HOMEPAGE_URL "@PROJECT_HOMEPAGE_URL@")

Expand Down

0 comments on commit 7b4e996

Please sign in to comment.