Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unneeded comments
  • Loading branch information
maff committed Jan 23, 2025
commit c4553c17d8b24dc289353a36669cb2095b6a0f8a
3 changes: 0 additions & 3 deletions entrypoint-action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ sh -c "git config --global --add safe.directory $PWD"
# create and write ENV result (individual env variables)
if [ "$INPUT_ENV" = "true" ]; then
env_result=$(git-that-semver "$@")
echo "ENV result"
echo "$env_result" | tee -a $GITHUB_OUTPUT
echo ""

Expand All @@ -19,7 +18,6 @@ fi
# create and write JSON result
if [ "$INPUT_JSON" = "true" ]; then
json_result=$(git-that-semver "$@" -o json -c output.json.indent=2)
echo "JSON result"
{
echo 'GTS_JSON<<EOF'
echo "$json_result"
Expand All @@ -35,7 +33,6 @@ fi
# create and write YAML result
if [ "$INPUT_YAML" = "true" ]; then
yaml_result=$(git-that-semver "$@" -o yaml)
echo "YAML result"
{
echo 'GTS_YAML<<EOF'
echo "$yaml_result"
Expand Down