Skip to content

Commit

Permalink
v2.0.0.1 - GH Release Attempt 3
Browse files Browse the repository at this point in the history
Took 6 minutes
  • Loading branch information
Jake-Moore committed Nov 19, 2023
1 parent 8ffe22d commit 6ed054d
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/maven-publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,18 @@ jobs:
#--------------------------------------------------------------------------------------------
# Create a Github Release
#--------------------------------------------------------------------------------------------
- uses: ncipollo/release-action@v1
- name: Extract Maven Project Version
run: echo ::set-output name=version::$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
id: project

- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "target/*.jar"
bodyFile: "body.md"
removeArtifacts: true
allowUpdates: true
removeArtifacts: true
omitBodyDuringUpdate: true
omitDraftDuringUpdate: true
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true
tag: "${{ steps.project.outputs.version }}"

0 comments on commit 6ed054d

Please sign in to comment.