Skip to content

Commit

Permalink
fix: enabled prelease-token parameter in github action (#929)
Browse files Browse the repository at this point in the history
  • Loading branch information
glichtner committed May 15, 2024
1 parent e34d7bd commit 1bb26b0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ if [ -n "$INPUT_BUILD_METADATA" ]; then
ARGS+=("--build-metadata $INPUT_BUILD_METADATA")
fi

if [ -n "$INPUT_PRERELEASE_TOKEN" ]; then
ARGS+=("--prerelease-token $INPUT_PRERELEASE_TOKEN")
fi

# Change to configured directory
cd "${INPUT_DIRECTORY}"

Expand Down

0 comments on commit 1bb26b0

Please sign in to comment.