Skip to content

Commit

Permalink
ci: zip TestApp before release
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre58 committed May 5, 2024
1 parent 2fcaf24 commit f64ed1c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ jobs:
with:
name: TestApp
path: TestApp/

# Zip testApp
- name: Zip artifact for deployment
run: zip Artifacts/TestApp.zip TestApp/** -r

# Get package version
- name: Process Package Version
Expand All @@ -170,7 +174,7 @@ jobs:
- uses: ncipollo/release-action@main # https://github.com/marketplace/actions/create-release
name: Create Release
with:
artifacts: "Artifacts/*.nupkg,Artifacts/*.snupkg,TestApp/"
artifacts: "Artifacts/*.nupkg,Artifacts/*.snupkg,Artifacts/*.zip"
artifactErrorsFailBuild: true
draft: true
generateReleaseNotes: false
Expand Down

0 comments on commit f64ed1c

Please sign in to comment.