Skip to content

Commit

Permalink
Tidying workflow up to actually produce the build artifact and upload it
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorguidi committed May 9, 2024
1 parent 19b818f commit 8ee0394
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/build_python_deps_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,11 @@ jobs:
id: build_wheel
run: |
cd grpcio-1.63.0
#python -m pip install --user --upgrade build
#python -m build
mkdir dist
echo -n "NOTHING TO SEE HERE" > dist/artifact.whl
python -m pip install --user --upgrade build
python -m build
WHEEL_FILE=$(find ${PWD}/dist/*.whl)
echo "WHEEL_FILE=${WHEEL_FILE}" >> $GITHUB_OUTPUT
echo $WHEEL_FILE
- name: Build wheel and upload to GCS
id: use_wheel
run: |
echo ${{ steps.build_wheel.outputs.WHEEL_FILE }}
- uses: actions/upload-artifact@v4
with:
name: "python 3.7 grpcio 1.63 ubuntu"
Expand Down

0 comments on commit 8ee0394

Please sign in to comment.