Skip to content

0.8.4-preview.2

0.8.4-preview.2 #309

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
configuration: [Debug, Release]
platform: [x64, arm64]
env:
Configuration: ${{ matrix.configuration }}
Platform: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Restore
run: dotnet restore Starward
- name: Build
run: |
msbuild Starward.Launcher "-property:Configuration=$env:Configuration;Platform=$env:Platform"
dotnet build Starward -c $env:Configuration -p:Platform=$env:Platform