From d75d355dc73a20ae2b604d0029a2187c24f900e2 Mon Sep 17 00:00:00 2001 From: jtalborough Date: Fri, 26 Apr 2024 12:11:42 -0400 Subject: [PATCH] ci: Add CPZ and CPLZ to NuGet Package --- .github/workflows/docker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index cbd3ff87..cf17a6f3 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -72,10 +72,10 @@ jobs: git tag ${{ steps.setVersion.outputs.version }} git push --tags origin # Create the release on the source repo - - name: Inject CPZ into NuGet Package + - name: Add CPZ and CPLZ to NuGet Package run: | - nuget add bin\Debug\*.cpz -Source PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg -NonInteractive - nuget add bin\Debug\*.cplz -Source PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg -NonInteractive + zip -j PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg bin\Debug\*.cpz + zip -j PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg bin\Debug\*.cplz - name: Create Release id: create_release # if: contains(steps.setVersion.outputs.version,'-rc-') ||