Skip to content

Changed the output file extension to cat and max size to 9MB (in line… #18

Changed the output file extension to cat and max size to 9MB (in line…

Changed the output file extension to cat and max size to 9MB (in line… #18

Workflow file for this run

name: Build Windows Executable
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
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 prepare_msxpico_roms -c Release
# Publish the application
- name: Publish the applications
run: dotnet publish prepare_msxpico_roms -c Release -o publish
# Upload the application artifacts
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: prepare_msxpico_roms
path: publish