Skip to content

Commit

Permalink
fix: avoid swallowing command error
Browse files Browse the repository at this point in the history
  • Loading branch information
jackie-linz committed Nov 20, 2024
1 parent 3da9c44 commit a7517ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ runs:
run: |
set -eo pipefail
export PREVIOUS_VERSION=$(git-version \
PREVIOUS_VERSION=$(git-version \
--previous-version \
--release-branch "${{ inputs.release-branch }}" \
--dev-branch "${{ inputs.dev-branch }}" \
Expand All @@ -76,7 +76,7 @@ runs:
run: |
set -eo pipefail
export VERSION=$(git-version \
VERSION=$(git-version \
--release-branch "${{ inputs.release-branch }}" \
--dev-branch "${{ inputs.dev-branch }}" \
--minor-identifier="${{ inputs.minor-identifier }}" \
Expand Down

0 comments on commit a7517ab

Please sign in to comment.