Skip to content

Commit c117c70

Browse files
committed
fix: matrix 4 windows, pip upgrade
1 parent 71497f3 commit c117c70

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/package-matrix.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Package — Build & Upload (Solution)
1+
name: Package — Build & Upload using Matrix
22

33
on:
44
workflow_dispatch:
@@ -20,7 +20,7 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: |
23-
python -m pip install --upgrade pip
23+
python${{ matrix.python-version }} -m pip install --upgrade pip
2424
pip install -r requirements.txt
2525
pip install pyinstaller
2626
- name: Build with PyInstaller
@@ -30,4 +30,4 @@ jobs:
3030
uses: actions/upload-artifact@v4
3131
with:
3232
name: hello-${{ matrix.os }}-${{ matrix.python-version }}
33-
path: dist/hello-${{ matrix.os }}-${{ matrix.python-version }}
33+
path: dist/hello-${{ matrix.os }}-${{ matrix.python-version }}*

solutions/package-matrix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: |
23-
python -m pip install --upgrade pip
23+
python${{ matrix.python-version }} -m pip install --upgrade pip
2424
pip install -r requirements.txt
2525
pip install pyinstaller
2626
- name: Build with PyInstaller
@@ -30,4 +30,4 @@ jobs:
3030
uses: actions/upload-artifact@v4
3131
with:
3232
name: hello-${{ matrix.os }}-${{ matrix.python-version }}
33-
path: dist/hello-${{ matrix.os }}-${{ matrix.python-version }}
33+
path: dist/hello-${{ matrix.os }}-${{ matrix.python-version }}*

0 commit comments

Comments
 (0)