Skip to content

Commit

Permalink
Make release builds self-contained
Browse files Browse the repository at this point in the history
  • Loading branch information
Meister1593 committed Jan 14, 2024
1 parent 0f838cf commit e68ca37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand Down

0 comments on commit e68ca37

Please sign in to comment.