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 1d8fa54 commit b1d0d18Copy full SHA for b1d0d18
1 file changed
.github/workflows/release-to-pypi.yml
@@ -37,7 +37,11 @@ jobs:
37
env:
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
run: |
40
- semantic-release version --commit --tag --push
+ set +e
41
+ semantic-release version --commit --tag --push --verbose
42
+ EXIT_CODE=$?
43
+ set -e
44
+ echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
45
46
- name: Build package
47
run: bash utils/build_package.sh
0 commit comments