Skip to content

fix astc 6x6 being missing from list #243

fix astc 6x6 being missing from list

fix astc 6x6 being missing from list #243

name: Build UABEA Windows
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.1
- name: Build
run: msbuild UABEAvalonia.sln /restore /p:Configuration=Release
- name: Remove unused platforms
run: Get-ChildItem -Path "UABEAvalonia\bin\Release\net6.0\runtimes" -Directory | Where-Object { $_.Name -notin @("win-x64", "win7-x64", "win") } | Remove-Item -Recurse -Force
- name: Upload
uses: actions/upload-artifact@v2
with:
name: uabea-windows
path: UABEAvalonia/bin/Release/net6.0