Skip to content

Commit 0be785d

Browse files
committed
Simplify exports
1 parent 09b8ccf commit 0be785d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

actions/build-ml-whl/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ runs:
4040
pip install setuptools-scm==8.2.0
4141
echo "::endgroup::"
4242
43-
BUILD_TYPE="nightly"
43+
export BUILD_TYPE="nightly"
4444
if ${{ inputs.release }}; then
45-
export BUILD_TYPE="release"
45+
BUILD_TYPE="release"
4646
elif ${{ inputs.dev }}; then
47-
export BUILD_TYPE="dev"
47+
BUILD_TYPE="dev"
4848
fi
4949
echo "BUILD_TYPE=${BUILD_TYPE}"
5050

0 commit comments

Comments
 (0)