Skip to content

Commit

Permalink
Correct released binary name
Browse files Browse the repository at this point in the history
  • Loading branch information
spyrkob committed Jan 10, 2025
1 parent 378b57d commit c1580ef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,13 @@ jobs:
mvn -B release:perform -Pdist,jboss-release -s maven-settings.xml
git push
git push --tags
- name: Prepare release ZIP
run: |
# maintain the prospero-build- prefix for the zip for historical reasons (to have a predictable URL)
mv dist/build/target/prospero-${{steps.metadata.outputs.current-version}}.zip prospero-build-${{steps.metadata.outputs.current-version}}.zip
- name: Create GH release
uses: softprops/action-gh-release@v2
with:
files: dist/build/target/prospero-${{steps.metadata.outputs.current-version}}.zip
files: prospero-build-${{steps.metadata.outputs.current-version}}.zip
tag_name: ${{steps.metadata.outputs.current-version}}
prerelease: contains(${{steps.metadata.outputs.current-version}}, "Beta")

0 comments on commit c1580ef

Please sign in to comment.