From e31fc4d3149729717440692e1f4971c171530549 Mon Sep 17 00:00:00 2001 From: ZacharyPatten Date: Wed, 15 Nov 2023 12:33:18 -0600 Subject: [PATCH] closes #76 --- .github/workflows/Binaries Deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Binaries Deploy.yml b/.github/workflows/Binaries Deploy.yml index dbd7cbbf..44717371 100644 --- a/.github/workflows/Binaries Deploy.yml +++ b/.github/workflows/Binaries Deploy.yml @@ -22,11 +22,11 @@ jobs: with: dotnet-version: 7.0.x - name: dotnet publish win-x64 - run: dotnet publish dotnet-console-games.slnf --output bin/win-x64 --configuration Release -p:PublishSingleFile=true --runtime win-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true -p:EnableTrimAnalyzer=false + run: dotnet publish dotnet-console-games.slnf --output bin/win-x64 --configuration Release -p:PublishSingleFile=true --runtime win-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true - name: dotnet publish osx-x64 - run: dotnet publish dotnet-console-games.slnf --output bin/osx-x64 --configuration Release -p:PublishSingleFile=true --runtime osx-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true -p:EnableTrimAnalyzer=false + run: dotnet publish dotnet-console-games.slnf --output bin/osx-x64 --configuration Release -p:PublishSingleFile=true --runtime osx-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true - name: dotnet publish linux-x64 - run: dotnet publish dotnet-console-games.slnf --output bin/linux-x64 --configuration Release -p:PublishSingleFile=true --runtime linux-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true -p:EnableTrimAnalyzer=false + run: dotnet publish dotnet-console-games.slnf --output bin/linux-x64 --configuration Release -p:PublishSingleFile=true --runtime linux-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true - name: CODEOWNERS run: echo "* @ZacharyPatten" > bin/CODEOWNERS - name: push to binaries branch