-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
69be1ea
commit 20528df
Showing
1 changed file
with
2 additions
and
9 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 |
---|---|---|
|
@@ -26,19 +26,12 @@ jobs: | |
- name: Install .NET Framework | ||
uses: microsoft/[email protected] | ||
|
||
- name: Restore the application | ||
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration | ||
- name: Restore NuGet packages | ||
run: dotnet restore $env:Solution_Name | ||
env: | ||
Configuration: ${{ matrix.configuration }} | ||
|
||
- name: Build the application | ||
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration | ||
env: | ||
Configuration: ${{ matrix.configuration }} | ||
|
||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Compiled Artifacts | ||
path: | | ||
Path\To\Your\Project\bin\${{ matrix.configuration }} |