We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67f6446 commit ad1c55aCopy full SHA for ad1c55a
.github/workflows/release-on-tag.yaml
@@ -22,8 +22,10 @@ jobs:
22
23
- name: Check sdk-version file
24
run: |
25
- if [[ "$(head -n1 version/sdk-version)" != "${{ github.ref }}" ]]; then
26
- echo "File version/sdk-version needs to be updated to ${{ github.ref }}"
+ SDK_VERSION="$(head -n1 version/sdk-version)"
+ 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 }}"
29
exit 1
30
fi
31
shell: bash
0 commit comments