Skip to content

Commit c3fa178

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

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,13 @@ 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+
echo "sdk_versions=$sdk_versions"
49+
if [ -z "$sdk_versions" ]; then
4950
echo "No tags found"
5051
exit 1
5152
fi
52-
echo "TAGS=$TAGS" >> $GITHUB_OUTPUT
53+
echo "sdk_versions=$sdk_versions" >> $GITHUB_OUTPUT
5354
5455
build:
5556
needs: ['path-filter', 'get_sdk_versions']

0 commit comments

Comments
 (0)