Skip to content

Commit

Permalink
Merge pull request #73 from codacy/fail-fast-action
Browse files Browse the repository at this point in the history
fix: Fail fast Github action
  • Loading branch information
lolgab authored Nov 21, 2022
2 parents b4a3025 + 920b2c3 commit 2067eb3
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 @@ -45,7 +45,7 @@ runs:
- id: previous-version
shell: bash
run: |
set -e
set -eo pipefail
export PREVIOUS_VERSION=$(docker run -v $(pwd):/repo codacy/git-version:${{ inputs.tool-version }} \
/bin/git-version \
Expand All @@ -62,7 +62,7 @@ runs:
- id: version
shell: bash
run: |
set -e
set -eo pipefail
export VERSION=$(docker run -v $(pwd):/repo codacy/git-version:${{ inputs.tool-version }} \
/bin/git-version \
Expand Down

0 comments on commit 2067eb3

Please sign in to comment.