From fcaffd0c888049cd40c0168ce1b52c9c7e3149e1 Mon Sep 17 00:00:00 2001 From: jtalborough Date: Fri, 26 Apr 2024 16:49:28 -0400 Subject: [PATCH] fix: Fix incorrect file paths for adding CPZ and CPLZ files --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 9a733018..61f1cccd 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -76,8 +76,8 @@ jobs: run: choco install 7zip.install -y - name: Add CPZ and CPLZ to NuGet Package run: | - 7z a .\output\PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg .\output\**\*.cpz - 7z a .\output\PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg .\output\**\*.cplz + 7z a .\output\PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg .\output\**\*.cpz..\builds + 7z a .\output\PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg .\output\**\*.cplz..\builds - name: Create Release id: create_release # if: contains(steps.setVersion.outputs.version,'-rc-') ||