Add tar.gz binaries in the release (#692)

This commit is contained in:
Guillaume Nodet
2022-09-20 10:09:02 +02:00
committed by GitHub
parent 309d0c7eff
commit 5dce72ef33
2 changed files with 6 additions and 1 deletions

View File

@@ -67,6 +67,7 @@ jobs:
name: artifacts name: artifacts
path: | path: |
dist/target/maven-mvnd-*.zip dist/target/maven-mvnd-*.zip
dist/target/maven-mvnd-*.tar.gz
source: source:
name: 'Build source distributions' name: 'Build source distributions'

View File

@@ -93,6 +93,10 @@
</directory> </directory>
</fileSet> </fileSet>
<archive name="maven-mvnd-${project.version}-${os.detected.name}-${os.detected.arch}.zip" executable="**/bin/mvnd"/> <archive name="maven-mvnd-${project.version}-${os.detected.name}-${os.detected.arch}.zip"
executable="**/bin/mvnd"/>
<archive name="maven-mvnd-${project.version}-${os.detected.name}-${os.detected.arch}.tar.gz"
executable="**/bin/mvnd"/>
</assembly> </assembly>