Skip to content

Commit 7579f9f

Browse files
committed
fix: SDK_VERSION not echoing properly
1 parent e2946ce commit 7579f9f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-wasm-internal.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ jobs:
3737
3838
- name: Set version
3939
run: |
40-
echo SDK_VERSION="${REF_NAME} (${SHA:0:7})" >> $GITHUB_ENV
41-
echo "SDK_VERSION=${SDK_VERSION}"
40+
export SDK_VERSION="${REF_NAME} (${SHA:0:7})"
41+
echo "SDK_VERSION='${SDK_VERSION}'" >> $GITHUB_ENV
42+
echo "SDK_VERSION='${SDK_VERSION}'"
4243
4344
- name: Setup Node
4445
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4

0 commit comments

Comments
 (0)