Skip to content

Commit fb45556

Browse files
authored
fix: delete automatically added git submodule when releasing (#694)
1 parent 66b00a1 commit fb45556

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/python-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,10 @@ jobs:
135135
run: poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD -v -n
136136

137137
- name: Clear the repo untracked files
138-
run: git clean -fxd
138+
run: |
139+
git clean -fxd
140+
# HACK: app git submodule appearing in version bump PRs
141+
git rm --cached app
139142
140143
- name: Bump repo version
141144
working-directory: ${{ env.PACKAGE_DIR }}

0 commit comments

Comments
 (0)