Skip to content

Commit 4d1e575

Browse files
committed
Fix version discovery
1 parent 2aeccb2 commit 4d1e575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-ga.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Configure Release Version
4545
run: |
4646
jf gradle releaseVersion
47-
echo PROJECT_VERSION=$(jfrog rt gradle "properties -q" | grep "version:" | awk '{print $2}') >> $GITHUB_ENV
47+
echo PROJECT_VERSION=$(cat gradle.properties | grep "version=" | awk -F'=' '{print $2}') >> $GITHUB_ENV
4848
# build and publish to staging repo.
4949
# we've allready tested with snapshots so no need to test
5050
# with a release build as we are not a release train.

0 commit comments

Comments
 (0)