From 446e35d1862978cbd98fad83fe088b96b85c8adf Mon Sep 17 00:00:00 2001 From: Ivan Bushchik Date: Thu, 13 Jan 2022 12:24:54 +0300 Subject: [PATCH] Update dotnet.yml --- .github/workflows/dotnet.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 741b8a6..92d365e 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -18,13 +18,11 @@ jobs: - name: Test run: dotnet test --no-build --verbosity normal - name: Publish on osx-x64 - run: dotnet publish --runtime osx-x64 -o publish/osx-x64/ + run: dotnet publish --runtime osx-x64 -o publish/osx-x64/ --self-contained - name: Publish on linux-x64 - run: dotnet publish --runtime linux-x64 -o publish/linux-x64/ - - name: Publish on linux-musl-x64 - run: dotnet publish --runtime -o publish/linux-musl-x64/ + run: dotnet publish --runtime linux-x64 -o publish/linux-x64/ --self-contained - name: Publish on linux-arm64 - run: dotnet publish --runtime -o publish/linux-arm64/ + run: dotnet publish --runtime -o publish/linux-arm64/ --self-contained - name: Compress to zip file run: tar cf roulette.tar.gz publish/