Skip to content

Commit

Permalink
add nuget and build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
daveboster committed Nov 24, 2023
1 parent e2a20a5 commit d42a436
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion .github/workflows/tasks-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ jobs:
fail-on-error: true

- name: Create a Zip package 🐙
id: create-zip-package
uses: OctopusDeploy/create-zip-package-action@v3
with:
package_id: ${{ steps.build.outputs.package_id }}
Expand All @@ -101,6 +102,32 @@ jobs:
files: |
**/*.*
- name: Create a NuGet package 🐙
id: create-nuget-package
uses: OctopusDeploy/create-nuget-package-action@v3
with:
package_id: ${{ steps.build.outputs.package_id }}
version: ${{ steps.build-info.outputs.version }}
output_folder: './packaging'
base_path: ${{ steps.build.outputs.output }}
files: |
**/*.*
nuspec_description: description
nuspec_authors: |
Dave Boster
- name: Upload Zip package to build artifacts 🗳️
uses: actions/upload-artifact@v3
with:
name: ${{ steps.create-zip-package.outputs.package_filename }}
path: ${{ steps.create-zip-package.outputs.package_file_path }}
retention-days: 1

- name: Upload NuGet package to build artifacts 🗳️
uses: actions/upload-artifact@v3
with:
name: ${{ steps.create-nuget-package.outputs.package_filename }}
path: ${{ steps.create-nuget-package.outputs.package_file_path }}
retention-days: 1
# tests_e2e:
# uses: ./.github/workflows/tests-e2e-playwright.yml

0 comments on commit d42a436

Please sign in to comment.