From e5f91a4a23cd1ff064c5c72472fd92a71a973918 Mon Sep 17 00:00:00 2001 From: Raicuparta Date: Sun, 4 Feb 2024 21:43:30 +0800 Subject: [PATCH] remove self-contained from workflow builds --- .github/workflows/build.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 353b3c2..81b6b6a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - - run: dotnet publish --configuration Release -r win-x64 --self-contained true + - run: dotnet publish --configuration Release -r win-x64 - name: Compress release run: | diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 27ae904..8cd5529 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - - run: dotnet publish --configuration Release -r win-x64 --self-contained true + - run: dotnet publish --configuration Release -r win-x64 - name: Compress release run: |