From 39d7bd17e257c0e32f88c3100ab59fd3009e593a Mon Sep 17 00:00:00 2001 From: Lucian Smith Date: Tue, 16 Jul 2024 16:55:58 -0700 Subject: [PATCH] Another upload-artifact v4 update. --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8b9fb511..956142a9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -365,8 +365,7 @@ jobs: cd ${RUNNER_WORKSPACE} python_wheel_file_name=$(ls install-antimony/bindings/python/dist | grep '^antimony') echo "python_wheel_artifacts_name=${python_wheel_file_name}" >> "${GITHUB_ENV}" - # we need to use relative path as actions/upload-artifact@v1 cannot find it on containerized runners - echo "python_wheel_artifacts_file=../install-antimony/bindings/python/dist/$python_wheel_file_name" >> "${GITHUB_ENV}" + echo "artifacts_path=${RUNNER_WORKSPACE}/install-antimony/bindings/python/dist/$python_wheel_file_name" >> "${GITHUB_ENV}" - name: Upload Python wheel artifacts if: matrix.platform.build_type == 'Release' && matrix.platform.build_python == 'ON'