Skip to content

Commit c8c4f7d

Browse files
committed
Attempting to fix invalid GA yaml
1 parent da003ca commit c8c4f7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_python_deps_linux.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build_wheels:
9-
name: ${{ matrix.wheel_combinations[0] }}-${{ matrix.wheel_combinations[1] }}-py${{ matrix.python_versions[0] }}
9+
name: ${{ matrix.libraries[1] }}-${{ matrix.wheel_combinations[0] }}-${{ matrix.wheel_combinations[1] }}-py${{ matrix.python_versions[0] }}
1010
runs-on: ${{ matrix.wheel_combinations[0] }}
1111
strategy:
1212
matrix:
@@ -59,12 +59,12 @@ jobs:
5959
- name: Download and Untar File - Windows
6060
if: matrix.wheel_combinations[0] == 'windows-latest'
6161
run: |
62-
Invoke-WebRequest -Uri "${{ matrix.libraries[0] }}" -OutFile "grpcio-1.63.0.tar.gz"
62+
Invoke-WebRequest -Uri ${{ matrix.libraries[0] }} -OutFile ${{ matrix.libraries[1] }}
6363
6464
- name: Download and Untar File - Unix
6565
if: matrix.wheel_combinations[0] != 'windows-latest'
6666
run: |
67-
wget -O grpcio-1.63.0.tar.gz ${{ matrix.libraries[0] }}
67+
wget -O ${{ matrix.libraries[1] }} ${{ matrix.libraries[0] }}
6868
6969
- name: Build wheels
7070
run: |

0 commit comments

Comments
 (0)