From 5e6f8cfeb32e4a83b5cdef0f8eda019db5e802dc Mon Sep 17 00:00:00 2001 From: jtalborough Date: Fri, 26 Apr 2024 12:52:30 -0400 Subject: [PATCH] fix: update file path for build --- .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 a8365501..4b449da1 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 PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg output\**\*.cpz - 7z a PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg output\**\*.cplz + 7z a .\output\PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg output\**\*.cpz + 7z a .\output\PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg output\**\*.cplz - name: Create Release id: create_release # if: contains(steps.setVersion.outputs.version,'-rc-') ||