Skip to content

Commit

Permalink
Debugging why artifact upload failed
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorguidi committed May 9, 2024
1 parent fd2c45e commit 510e536
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_python_deps_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 510e536

Please sign in to comment.