From f649738ea645c020afb9ade2c09bd17e33110711 Mon Sep 17 00:00:00 2001 From: Rodrigo Ramos Date: Mon, 15 Jan 2024 12:57:42 -0300 Subject: [PATCH] Update publish-dotnet-binaries.yml --- .github/workflows/publish-dotnet-binaries.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-dotnet-binaries.yml b/.github/workflows/publish-dotnet-binaries.yml index 8a35e3f..24792a8 100644 --- a/.github/workflows/publish-dotnet-binaries.yml +++ b/.github/workflows/publish-dotnet-binaries.yml @@ -54,6 +54,7 @@ jobs: - name: Compile binaries run: | RUNTIMES=("linux-x64","linux-arm64") + RUNTIMES=${RUNTIMES//,/ } mkdir build mkdir release dotnet restore ./src/jsunmap.sln @@ -62,7 +63,7 @@ jobs: echo "building $RUNTIME" dotnet publish ./src/jsunmap.csproj --configuration Release --self-contained --runtime $RUNTIME --verbosity quiet -p:PublishTrimmed=true -o ./build/$RUNTIME /p:WarningLevel=0 zip -r ./release/JsUnMap-${{ github.run_number }}-$RUNTIME.zip ./build/$RUNTIME - } + done ls ./release/ - name: Upload artifact uses: actions/upload-artifact@v2