Skip to content

Commit

Permalink
ci: keep lock changes
Browse files Browse the repository at this point in the history
  • Loading branch information
chamini2 committed Jan 15, 2024
1 parent c3cf79e commit c939ae6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,11 @@ jobs:
run: poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD -v -n

- name: Clean git changes
run: git checkout -- .
working-directory: projects/fal
run: |
git add poetry.lock
git checkout -- .
git reset
- name: Bump repo version
working-directory: projects/fal
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release_isolate_proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ jobs:
run: poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD -v -n

- name: Clean git changes
run: git checkout -- .
working-directory: projects/isolate_proto
run: |
git add poetry.lock
git checkout -- .
git reset
- name: Bump repo version
working-directory: projects/isolate_proto
Expand Down

0 comments on commit c939ae6

Please sign in to comment.