From b9382216c1130cbfaa630248a9b1df3f1c7df0a8 Mon Sep 17 00:00:00 2001 From: jtalborough Date: Fri, 26 Apr 2024 12:16:34 -0400 Subject: [PATCH] ci: Install 7-Zip for packaging --- .github/workflows/docker.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index cf17a6f3..4e304923 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -72,10 +72,12 @@ jobs: git tag ${{ steps.setVersion.outputs.version }} git push --tags origin # Create the release on the source repo + - name: Install 7-Zip + run: choco install 7zip.install -y - name: Add CPZ and CPLZ to NuGet Package run: | - zip -j PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg bin\Debug\*.cpz - zip -j PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg bin\Debug\*.cplz + 7z a PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg bin\Debug\*.cpz + 7z a PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg bin\Debug\*.cplz - name: Create Release id: create_release # if: contains(steps.setVersion.outputs.version,'-rc-') ||