diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 8684f02..ffca24a 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -18,11 +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/ --self-contained + run: dotnet publish --runtime osx-x64 -o publish/osx-x64/ --self-contained -p:PublishSingleFile=true - name: Publish on linux-x64 - run: dotnet publish --runtime linux-x64 -o publish/linux-x64/ --self-contained + run: dotnet publish --runtime linux-x64 -o publish/linux-x64/ --self-contained -p:PublishSingleFile=true - name: Publish on linux-arm64 - run: dotnet publish --runtime linux-arm64 -o publish/linux-arm64/ --self-contained + run: dotnet publish --runtime linux-arm64 -o publish/linux-arm64/ --self-contained -p:PublishSingleFile=true - name: Compress to zip file run: tar cf roulette.tar.gz publish/ @@ -34,8 +34,8 @@ jobs: with: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} - draft: false - prerelease: True + draft: True + prerelease: False - name: Upload Release Asset id: upload-release-asset uses: actions/upload-release-asset@v1