Skip to content

Commit ad1c55a

Browse files
Fixes SDK_VERSION workflow check condition (#369) (#373)
Signed-off-by: Roberto J Rojas <[email protected]> (cherry picked from commit 3f795a2)
1 parent 67f6446 commit ad1c55a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release-on-tag.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ jobs:
2222

2323
- name: Check sdk-version file
2424
run: |
25-
if [[ "$(head -n1 version/sdk-version)" != "${{ github.ref }}" ]]; then
26-
echo "File version/sdk-version needs to be updated to ${{ github.ref }}"
25+
SDK_VERSION="$(head -n1 version/sdk-version)"
26+
SDK_VERSION_GIT="refs/tags/${SDK_VERSION}"
27+
if [[ "${SDK_VERSION_GIT}" != "${{ github.ref }}" ]]; then
28+
echo "File version/sdk-version (${SDK_VERSION}) needs to be updated to ${{ github.ref }}"
2729
exit 1
2830
fi
2931
shell: bash

0 commit comments

Comments
 (0)