Skip to content

Issue 12 should be fixed. Replaced bash syntax with proper windows powershell syntax. #20

Merged
merged 1 commit into from
Feb 4, 2026
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/buildOnRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,15 @@ jobs:
cache: maven

- run: mvn clean package

- name: Set versioned JAR name
run: echo "JAR_NAME=APPLICATION-${GITHUB_REF#refs/tags/}.jar" >> $GITHUB_ENV
shell: pwsh
run: |
$tag = "${{ github.ref_name }}"
echo "JAR_NAME=APPLICATION-$tag.jar" >> $env:GITHUB_ENV
- name: Rename JAR
shell: pwsh
run: mv target/*.jar $env:JAR_NAME

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