Skip to content

Commit 6133a4a

Browse files
author
Val Brodsky
committed
test
1 parent 4f442d9 commit 6133a4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-package-develop.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
- name: Get Latest SDK versions
4545
id: get_sdk_versions
4646
run: |
47-
TAGS=$(git tag --list --sort=-version:refname "v.*" | head -n 4)
48-
if [ -z "$TAGS" ]; then
47+
sdk_versions=$(git tag --list --sort=-version:refname "v.*" | head -n 4)
48+
if [ -z "$sdk_versions" ]; then
4949
echo "No tags found"
5050
exit 1
5151
fi
52-
echo "TAGS=$TAGS" >> $GITHUB_OUTPUT
52+
echo "sdk_versions=$sdk_versions" >> $GITHUB_OUTPUT
5353
5454
build:
5555
needs: ['path-filter', 'get_sdk_versions']

0 commit comments

Comments
 (0)