Skip to content

Commit

Permalink
Fix Gradle command quotation for version tag
Browse files Browse the repository at this point in the history
  • Loading branch information
satran004 committed Nov 19, 2024
1 parent 925b1a6 commit b76adb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dev-release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
Add-Content -Path $env:GITHUB_ENV -Value "arch=$arch"
- name: Build with Gradle
working-directory: applications\cli
run: ./gradlew --no-daemon -i -Pversion=${{ env.TAG }} clean build nativeCompile cliZip
run: ./gradlew --no-daemon -i -Pversion="${{ env.TAG }}" clean build nativeCompile cliZip
- name: Copy artifacts
working-directory: applications\cli
run: mv build/yaci-cli-${{ env.TAG }}.zip build/yaci-cli-${{ env.TAG }}-${{ env.os_prefix }}-${{ env.arch }}.zip
Expand Down

0 comments on commit b76adb7

Please sign in to comment.