From f8d2441f555f948348a409e921c1d7c3a46dbc52 Mon Sep 17 00:00:00 2001 From: Jamie D Date: Mon, 31 Jan 2022 22:13:12 +0000 Subject: [PATCH] retry syntax --- .github/workflows/dotnet-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 72e9e1e..84be2bf 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -58,7 +58,7 @@ jobs: run: dotnet publish .//SmartThingsTerminal//SmartThingsTerminal.csproj -o publish/v$GITVERSION_SEMVER/${{ matrix.runtime }} -c Release -r ${{ matrix.runtime }} -f net5.0 /p:PublishSingleFile=true /p:DebugType=None /p:IncludeNativeLibrariesForSelfExtract=true /p:AssemblyVersion=$GITVERSION_SEMVER /p:FileVersion=$GITVERSION_ASSEMBLYSEMFILEVER /p:InformationalVersion=$GITVERSION_SEMVER - name: Zip ${{ matrix.runtime }} release - run: 7z a ${{ matrix.runtime }}.zip .\publish\v${{ env.GITVERSION_SEMVER }}\${{ matrix.runtime }}\ + run: 7z a ${{ matrix.runtime }}.zip publish/v${{ env.GITVERSION_SEMVER }}/${{ matrix.runtime }}/* - name: Release ${{ env.GITVERSION_SEMVER }} if: steps.release_check.outputs.skip_build != 'true'