Skip to content

Commit

Permalink
fix: add " around the version string passed to gradlew
Browse files Browse the repository at this point in the history
  • Loading branch information
madoar committed Apr 28, 2020
1 parent e4333e8 commit 91c301f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ jobs:
- name: Execute Tests
run: ./gradlew clean test
- name: Build jar
run: ./gradlew -Pversion=${{ steps.get_version.outputs.tag }} clean build
run: ./gradlew -Pversion="${{ steps.get_version.outputs.tag }}" clean build
- name: Create Exe Installer
run: ./gradlew -Pversion=${{ steps.get_version.outputs.tag }} buildExePackage
run: ./gradlew -Pversion="${{ steps.get_version.outputs.tag }}" buildExePackage
- name: Rename Installer
run: ./gradlew renameExecutables
- name: Upload Installer
Expand Down

0 comments on commit 91c301f

Please sign in to comment.