Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
FalcoGer committed Oct 6, 2023
2 parents 448aff5 + b7c506f commit cb351d6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/wix-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,28 @@ jobs:
with:
name: MSI
path: ${{ env.Project_Directory }}\bin\${{matrix.configuration}}\en-US

# ZIP the directory
# TheDoctor0/zip-release
- name: Zip Release
uses: TheDoctor0/zip-release@0.7.1
with:
filename: CoordinateConverter.zip
path: ${{ env.Project_Directory }}\bin\${{matrix.configuration}}\en-US
exclusions: "*.wixpdb"

# create/update release with the artifact
# https://github.com/ncipollo/release-action/blob/main/README.md
- uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: CoordinateConverter.zip
name: "$env:Major.$env:Minor.$env:Patch"
body: "Automatically generated"
omitBodyDuringUpdate: true
omitDraftDuringUpdate: true
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true
makeLatest: true
replacesArtifacts: true

0 comments on commit cb351d6

Please sign in to comment.