We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f9a4a commit 99d5432Copy full SHA for 99d5432
.github/workflows/release.yml
@@ -56,9 +56,10 @@ jobs:
56
- name: run semantic release
57
id: set_semantic_version
58
run: |
59
- # Set pipefail so we can check if pipefail is semantic-release classifying no version bump required as an error
60
- set -o pipefail
+ # Set error to not instantly fail so we can check if error is semantic-release classifying no version bump required as an error
+ set +e
61
OUTPUT=$(npx semantic-release 2>&1) || STATUS=$?
62
+ set -e
63
echo "$OUTPUT"
64
65
# 0 not exclusively due to no version bump so check output
0 commit comments