From f64ed1c5a7aef381cb95435c35e8c06e36c2abe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20ANDRE?= Date: Sun, 5 May 2024 22:05:05 +0200 Subject: [PATCH] ci: zip TestApp before release --- .github/workflows/create_release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 64b3e84..09906fd 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -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 @@ -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