Skip to content

Commit

Permalink
Adding id to build_wheel step so I can reference its outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorguidi committed May 9, 2024
1 parent bb7106e commit fd16355
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_python_deps_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
wget https://files.pythonhosted.org/packages/0c/2a/23943e19b4bbbdad60a9d881e44cd53bb48b31c7419ebb7b983edfbbb708/grpcio-1.63.0.tar.gz
tar xvf grpcio-1.63.0.tar.gz
- name: Build wheel and upload to GCS
id: build_wheel
run: |
cd grpcio-1.63.0
#python -m pip install --user --upgrade build
Expand All @@ -30,12 +31,11 @@ jobs:
WHEEL_FILE=$(find ./dist/*.whl)
echo "WHEEL_FILE=${WHEEL_FILE}" >> GITHUB_OUTPUT
echo $WHEEL_FILE
echo "wheel file in output env is ${{ steps.vars.outputs.WHEEL_FILE }}""
- uses: actions/upload-artifact@v4
with:
name: "python 3.7 grpcio 1.63 ubuntu"
path: ${{ steps.vars.outputs.WHEEL_FILE }}
path: ${{ steps.build_wheel.outputs.WHEEL_FILE }}
if-no-files-found: error
retention-days: 1
compression-level: 0
Expand Down

0 comments on commit fd16355

Please sign in to comment.