Skip to content

Commit

Permalink
Update build-windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sdsnatcher73 authored Jan 16, 2024
1 parent 7ce57b2 commit d36f857
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d36f857

Please sign in to comment.