Skip to content

Commit 669a0d2

Browse files
committed
fix: correct version extraction from gradle.properties
1 parent f64fa7e commit 669a0d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Get version from gradle.properties
3535
id: get_version
3636
run: |
37-
version=$(grep '^yampVersion=' gradle.properties | cut -d'=' -f2)
37+
version=$(grep 'yampVersion' gradle.properties | cut -d'=' -f2 | tr -d ' ')
3838
echo "version=$version" >> "$GITHUB_OUTPUT"
3939
4040
- name: Rename plugin artifact

0 commit comments

Comments
 (0)