From 510e53633adf3c6ae78b4794a527d18013162ef5 Mon Sep 17 00:00:00 2001 From: Vitor Guidi Date: Thu, 9 May 2024 16:58:49 +0000 Subject: [PATCH] Debugging why artifact upload failed --- .github/workflows/build_python_deps_linux.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_python_deps_linux.yml b/.github/workflows/build_python_deps_linux.yml index 990871a48d..97a46a81ad 100644 --- a/.github/workflows/build_python_deps_linux.yml +++ b/.github/workflows/build_python_deps_linux.yml @@ -23,10 +23,13 @@ jobs: - name: Build wheel and upload to GCS run: | cd grpcio-1.63.0 - python -m pip install --user --upgrade build - python -m build + #python -m pip install --user --upgrade build + #python -m build + mkdir dist + echo -n "NOTHING TO SEE HERE" > dist/artifact.whl WHEEL_FILE=$(find ./dist/*.whl) echo "WHEEL_FILE=${WHEEL_FILE}" >> GITHUB_OUTPUT + echo $WHEEL_FILE 1>2 - uses: actions/upload-artifact@v4 with: