Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
fix: delete automatically added git submodule when releasing (#694)
Browse files Browse the repository at this point in the history
  • Loading branch information
chamini2 authored Dec 16, 2022
1 parent 66b00a1 commit fb45556
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ jobs:
run: poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD -v -n

- name: Clear the repo untracked files
run: git clean -fxd
run: |
git clean -fxd
# HACK: app git submodule appearing in version bump PRs
git rm --cached app
- name: Bump repo version
working-directory: ${{ env.PACKAGE_DIR }}
Expand Down

0 comments on commit fb45556

Please sign in to comment.