Skip to content

Commit

Permalink
Merge pull request #12 from dokku/fix-input
Browse files Browse the repository at this point in the history
fix: use correct variable for input
  • Loading branch information
josegonzalez authored May 18, 2024
2 parents 6238ffb + 474f18a commit d277bd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions github-entrypoint
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env sh

if [ -n "$INPUT_VERSION" ] && [ -n "$INPUT_BUMP" ]; then
/usr/local/bin/semver-generator --bump "$INPUT_BUMP" --input "$INPUT_VERSION"
if [ -n "$INPUT_INPUT" ] && [ -n "$INPUT_BUMP" ]; then
/usr/local/bin/semver-generator --bump "$INPUT_BUMP" --input "$INPUT_INPUT"
else
/usr/local/bin/semver-generator "$@"
fi

0 comments on commit d277bd9

Please sign in to comment.