-
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.
- Loading branch information
1 parent
7ce57b2
commit d36f857
Showing
1 changed file
with
13 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 |
---|---|---|
|
@@ -32,8 +32,20 @@ jobs: | |
dotnet-version: 8.x.x | ||
|
||
|
||
# Restore the application to populate the obj folder with RuntimeIdentifiers | ||
# Build the application | ||
- name: Build the application | ||
run: dotnet build $env:Solution_Name -c $env:Configuration | ||
env: | ||
Configuration: ${{ matrix.configuration }} | ||
|
||
# Publish the application | ||
- name: Publish the applications | ||
run: dotnet piblish $env:Solution_Name -c $env:Configuration -o $temp/publish | ||
env: | ||
Configuration: ${{ matrix.configuration }} | ||
|
||
# Upload the application artifacts | ||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: $temp/publish |