Compare commits

...

7 Commits

Author SHA1 Message Date
jtalborough
64ba5a9f94 refactor: Update file paths for packaging commands 2024-04-26 12:23:06 -04:00
jtalborough
b9382216c1 ci: Install 7-Zip for packaging 2024-04-26 12:16:34 -04:00
jtalborough
d75d355dc7 ci: Add CPZ and CPLZ to NuGet Package 2024-04-26 12:11:42 -04:00
jtalborough
7277ccc687 style: Update NuGet package source and add NonInteractive 2024-04-26 12:06:41 -04:00
jtalborough
2e4601b5f9 style: update nuget add command order 2024-04-26 11:59:36 -04:00
jtalborough
fe1804f9c7 feat: Inject CPZ into NuGet Package 2024-04-26 10:28:27 -04:00
jtalborough
faa07e682f feat: Add PackageOutputPath to msbuild command 2024-04-26 10:06:56 -04:00

View File

@@ -72,6 +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: |
7z a PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg output\**\*.cpz
7z a PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg output\**\*.cplz
- name: Create Release
id: create_release
# if: contains(steps.setVersion.outputs.version,'-rc-') ||