X Tutup
Skip to content

Commit b1d0d18

Browse files
committed
feat: TESTING
1 parent 1d8fa54 commit b1d0d18

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release-to-pypi.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ jobs:
3737
env:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939
run: |
40-
semantic-release version --commit --tag --push
40+
set +e
41+
semantic-release version --commit --tag --push --verbose
42+
EXIT_CODE=$?
43+
set -e
44+
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
4145
4246
- name: Build package
4347
run: bash utils/build_package.sh

0 commit comments

Comments
 (0)
X Tutup