diff --git a/.github/scripts/houdini.py b/.github/scripts/houdini.py index 181a70f..08b3bec 100644 --- a/.github/scripts/houdini.py +++ b/.github/scripts/houdini.py @@ -78,7 +78,7 @@ def install_sidefx_houdini(): sidefx_service = create_sidefx_service(SIDEFX_CLIENT_ID, SIDEFX_CLIENT_SECRET_KEY) sidefx_platform = get_sidefx_platform() sidefx_product = "houdini" - print(sidefx_platform) + # Get release data releases_list = sidefx_service.download.get_daily_builds_list(product=sidefx_product, platform=sidefx_platform, @@ -135,7 +135,7 @@ def install_sidefx_houdini(): raise Exception("Platform {platform} is currently not" "supported!".format(platform=platform)) # Create version-less symlink - os.symlink(hfs_dir_path, hfs_version_less_dir_path) + os.symlink(hfs_dir_path, hfs_versionless_dir_path) if __name__ == "__main__": diff --git a/.github/workflows/build_houdini.yml b/.github/workflows/build_houdini.yml index 892bf4a..ebacd88 100644 --- a/.github/workflows/build_houdini.yml +++ b/.github/workflows/build_houdini.yml @@ -19,11 +19,11 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - name: Switch to latest release tag - run: | - git fetch --all --tags - $latest_release_tag=git tag -l --sort=-version:refname v* - git checkout tags/$latest_release_tag + #- name: Switch to latest release tag + # run: | + # git fetch --all --tags + # $latest_release_tag=git tag -l --sort=-version:refname v* + # git checkout tags/$latest_release_tag - name: Install system packages run: | pip3 install requests