Skip to content

Update build-windows.yml #9

Update build-windows.yml

Update build-windows.yml #9

Workflow file for this run

name: Build Windows Executable
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
configuration: [ Debug, Release ]
runs-on: windows-latest
env:
Solution_Name: prepare_msxpico_roms
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x.x
# 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 publish $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: prepare_msxpico_roms_windows
path: $temp\publish\*.*