-
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
8711c68
commit c351341
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -13,8 +13,8 @@ jobs: | |
runs-on: windows-latest | ||
|
||
env: | ||
Solution_Name: ClearstreamDotNetFramework | ||
Configuration: Release | ||
SOLUTION_NAME: ClearstreamDotNetFramework.sln | ||
CONFIGURATION: Release | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -31,13 +31,13 @@ jobs: | |
uses: microsoft/[email protected] | ||
|
||
- name: Restore NuGet Packages | ||
run: nuget restore $env:Solution_Name | ||
run: nuget restore ${{ env.SOLUTION_NAME }} | ||
|
||
- name: Build ClearstreamDotNetFramework | ||
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration | ||
run: msbuild ${{ env.SOLUTION_NAME }} /p:Configuration=${{ env.CONFIGURATION }} | ||
|
||
- name: Create NuGet Package | ||
run: nuget pack -properties Configuration=$env:Configuration | ||
run: nuget pack -properties Configuration=${{ env.CONFIGURATION }} | ||
working-directory: ./ClearstreamDotNetFramework/ | ||
|
||
- name: Push NuGet Package | ||
|