From e68ca37da2e6d1715d4b0ac77a6799d6c130fe32 Mon Sep 17 00:00:00 2001 From: plyshka Date: Sun, 14 Jan 2024 06:54:15 +0500 Subject: [PATCH] Make release builds self-contained --- .github/workflows/dotnet-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-release.yml b/.github/workflows/dotnet-release.yml index 28a3f00..aef79ec 100644 --- a/.github/workflows/dotnet-release.yml +++ b/.github/workflows/dotnet-release.yml @@ -19,9 +19,9 @@ jobs: with: dotnet-version: 8.0.x - name: Publish for linux - run: dotnet publish -r linux-x64 -c Release + run: dotnet publish -r linux-x64 -c Release --self-contained - name: Publish for windows - run: dotnet publish -r win-x64 -c Release + run: dotnet publish -r win-x64 -c Release --self-contained - name: Pack linux build run: cd ADBForwarder/bin/Release/net8.0/linux-x64/ && mv publish adbforwarder &&