Skip to content

Commit 87a0220

Browse files
chore: exit if dev_deps not existing
1 parent 2f12528 commit 87a0220

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/reusable-build-test-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ jobs:
486486
poetry check
487487
poetry export --without-hashes -o package/lib/requirements.txt
488488
fi
489-
if [ ! -f dev_deps/requirements_dev.txt ]; then echo no dev_deps/requirements;exit 0 ;fi
489+
if [ ! -f dev_deps/requirements_dev.txt ]; then echo no dev_deps/requirements;exit 1 ;fi
490490
git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
491491
git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
492492
python${{ env.PYTHON_VERSION }} -m venv .dev_venv

0 commit comments

Comments
 (0)