Skip to content

Commit 1bb26b0

Browse files
authored
fix: enabled prelease-token parameter in github action (#929)
1 parent e34d7bd commit 1bb26b0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

action.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ if [ -n "$INPUT_BUILD_METADATA" ]; then
5050
ARGS+=("--build-metadata $INPUT_BUILD_METADATA")
5151
fi
5252

53+
if [ -n "$INPUT_PRERELEASE_TOKEN" ]; then
54+
ARGS+=("--prerelease-token $INPUT_PRERELEASE_TOKEN")
55+
fi
56+
5357
# Change to configured directory
5458
cd "${INPUT_DIRECTORY}"
5559

0 commit comments

Comments
 (0)