Skip to content

Commit

Permalink
Fix: "update buildOnRelease"
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyah authored Feb 4, 2026
1 parent c356071 commit 1a83b3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildOnRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- run: mvn clean package

- name: Set versioned JAR name
run: echo "$JAR_NAME=APPLICATION-${GITHUB_REF#refs/tags/}.jar" >> $GITHUB_ENV
run: echo "JAR_NAME=APPLICATION-${GITHUB_REF#refs/tags/}.jar" >> $GITHUB_ENV

- name: Rename JAR
run: mv target/*.jar $JAR_NAME
run: mv target/*.jar app.jar

- uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 1a83b3f

Please sign in to comment.