Skip to content

Commit bc2eca1

Browse files
fix(build): support major versions >= 8 for Arc release build steps
1 parent f3ecaa2 commit bc2eca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/binary-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: |
1717
TAG_NAME="${{ github.event.release.tag_name }}"
1818
echo "Checking tag $TAG_NAME for ARC build"
19-
(echo "$TAG_NAME" | grep -Eq '^8\.[0-9]+\.[0-9]+$') && echo "run_jobs=true" >> $GITHUB_OUTPUT || echo "run_jobs=false" >> $GITHUB_OUTPUT
19+
(echo "$TAG_NAME" | grep -Eq '^([8-9]|[1-9][0-9]+)\.[0-9]+\.[0-9]+$') && echo "run_jobs=true" >> $GITHUB_OUTPUT || echo "run_jobs=false" >> $GITHUB_OUTPUT
2020
2121
- name: Get the version from the tag
2222
id: get-version

0 commit comments

Comments
 (0)