-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed name of zip -> moved to env variable
- Loading branch information
Andreas Kurka
committed
Jan 13, 2022
1 parent
c1c20f2
commit 4cdac1e
Showing
1 changed file
with
5 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -5,6 +5,9 @@ | |
# This pipeline builds the Wpf project, runs unit tests, then saves the MSIX build artifact. | ||
name: Wpf Continuous Integration | ||
|
||
# TODO: Remove block with comments that are not needed | ||
|
||
|
||
# Trigger on every master branch push and pull request | ||
on: | ||
push: | ||
|
@@ -35,6 +38,7 @@ jobs: | |
Wap_Project_Name: MapCreationTool.Package.wapproj | ||
Actions_Allow_Unsecure_Commands: true # Allows AddPAth and SetEnv commands | ||
OutSubPath: net5.0-windows | ||
ZipName: MapCreationTool # No file extension required | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -112,5 +116,5 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: MapCreationTool6 #.zip will be added automatically | ||
name: ${{ env.ZipName }} #.zip will be added automatically | ||
path: MapCreationTool/MapCreationTool/bin/${{ matrix.targetplatform }}/${{ env.Configuration }}/${{ env.OutSubPath }}/**/*.* |