Skip to content

Commit

Permalink
Attempting to fix invalid GA yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorguidi committed May 13, 2024
1 parent da003ca commit c8c4f7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_python_deps_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build_wheels:
name: ${{ matrix.wheel_combinations[0] }}-${{ matrix.wheel_combinations[1] }}-py${{ matrix.python_versions[0] }}
name: ${{ matrix.libraries[1] }}-${{ matrix.wheel_combinations[0] }}-${{ matrix.wheel_combinations[1] }}-py${{ matrix.python_versions[0] }}
runs-on: ${{ matrix.wheel_combinations[0] }}
strategy:
matrix:
Expand Down Expand Up @@ -59,12 +59,12 @@ jobs:
- name: Download and Untar File - Windows
if: matrix.wheel_combinations[0] == 'windows-latest'
run: |
Invoke-WebRequest -Uri "${{ matrix.libraries[0] }}" -OutFile "grpcio-1.63.0.tar.gz"
Invoke-WebRequest -Uri ${{ matrix.libraries[0] }} -OutFile ${{ matrix.libraries[1] }}
- name: Download and Untar File - Unix
if: matrix.wheel_combinations[0] != 'windows-latest'
run: |
wget -O grpcio-1.63.0.tar.gz ${{ matrix.libraries[0] }}
wget -O ${{ matrix.libraries[1] }} ${{ matrix.libraries[0] }}
- name: Build wheels
run: |
Expand Down

0 comments on commit c8c4f7d

Please sign in to comment.