-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken artifact upload (v4 breaking changes) on additional workfl…
…ows (#136)
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,7 +78,7 @@ jobs: | |
- name: Upload wheels as artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: glew_wheels | ||
name: glew_wheels-${{ matrix.python }}-${{ matrix.arch }} | ||
path: dist | ||
- name: Install MSYS2 | ||
run: choco install msys2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ jobs: | |
- name: Upload wheels as artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: gstreamer_wheels | ||
name: gstreamer_wheels-${{ matrix.python }}-${{ matrix.arch }} | ||
path: dist | ||
- name: Install MSYS2 | ||
run: choco install msys2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,7 @@ jobs: | |
- name: Upload wheels as artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: sdl2_wheels | ||
name: sdl2_wheels-${{ matrix.python }}-${{ matrix.arch }} | ||
path: dist | ||
- name: Install MSYS2 | ||
if: contains(github.event.head_commit.message, '[publish sdl2 win]') | ||
|