We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50f2fbf commit 11df7a0Copy full SHA for 11df7a0
.github/workflows/autorelease.yaml
@@ -18,9 +18,7 @@ jobs:
18
- name: Release env
19
id: set_tag
20
working-directory: ./tools
21
- run: |
22
- ./releaser/scripts/setghenv.sh
23
- echo "release_tag=${RELEASE_TAG}" >> $GITHUB_OUTPUT
+ run: ./releaser/scripts/setghenv.sh
24
- name: Create Release
25
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631
26
with:
tools/releaser/scripts/setghenv.sh
@@ -46,3 +46,8 @@ fi
46
echo "$RELEASE_NOTES"
47
echo "$EOF"
48
} >> "$GITHUB_ENV"
49
+
50
+# Set the release_tag output for GitHub Actions
51
+if [ -n "${GITHUB_OUTPUT:-}" ]; then
52
+ echo "release_tag=${SDK_VERSION}" >> "$GITHUB_OUTPUT"
53
+fi
0 commit comments