-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make upload artifacts include runs-on
- Loading branch information
1 parent
02f912e
commit f3abfe5
Showing
2 changed files
with
7 additions
and
7 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 |
---|---|---|
|
@@ -59,7 +59,7 @@ jobs: | |
- name: Upload dmg as artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: KivySDKPackager | ||
name: KivySDKPackager-${{ matrix.runs-on }} | ||
path: osx_artifacts | ||
|
||
test_dmg: | ||
|
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 |
---|---|---|
|
@@ -38,8 +38,8 @@ jobs: | |
Build-angle | ||
- uses: actions/[email protected] | ||
with: | ||
name: angle_dlls | ||
path: angle_dlls | ||
name: angle_dlls-${{ matrix.runs-on }} | ||
path: angle_dlls-${{ matrix.runs-on }} | ||
|
||
|
||
windows_wheels: | ||
|
@@ -63,18 +63,18 @@ jobs: | |
run: | | ||
. .\ci\windows_ci.ps1 | ||
Prepre-env | ||
- uses: actions/[email protected].8 | ||
- uses: actions/[email protected].7 | ||
with: | ||
name: angle_dlls | ||
path: angle_dlls | ||
name: angle_dlls-${{ matrix.runs-on }} | ||
path: angle_dlls-${{ matrix.runs-on }} | ||
- name: Build package | ||
run: | | ||
. .\ci\windows_ci.ps1 | ||
Create-Packages | ||
- name: Upload wheels as artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: angle_wheels | ||
name: angle_wheels-${{ matrix.runs-on }} | ||
path: dist | ||
- name: Install MSYS2 | ||
run: choco install msys2 | ||
|