-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
2 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 |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
- name: Upload artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: Build artifacts | ||
name: Build ${{ matrix.platform }} artifacts | ||
path: | | ||
jN_*.zip | ||
${{ matrix.configuration }}/*.dll | ||
|
@@ -83,7 +83,7 @@ jobs: | |
- name: Download artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: Build artifacts | ||
name: Build x64 artifacts | ||
|
||
- name: Upload x64 | ||
uses: actions/[email protected] | ||
|
@@ -95,6 +95,11 @@ jobs: | |
asset_name: jN_${{ steps.nbgv.outputs.SemVer2 }}_x64.zip | ||
asset_content_type: application/zip | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: Build x86 artifacts | ||
|
||
- name: Upload x86 | ||
uses: actions/[email protected] | ||
env: | ||
|