Skip to content

Commit 5447bb5

Browse files
committed
Allow for 'v' release prefix
1 parent 0c670be commit 5447bb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-release-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Check version in library.properties
3434
id: compare_version
3535
run: |
36-
version=$(cat library.properties | grep "version" | cut -d'=' -f2)
36+
version=v$(cat library.properties | grep "version" | cut -d'=' -f2)
3737
echo "Version in library.properties: $version"
3838
echo "Version in release: ${{ steps.get_latest_release.outputs.release }}"
3939
if [ "$version" == "${{ steps.get_latest_release.outputs.release }}" ]; then

0 commit comments

Comments
 (0)