Skip to content

Commit c4e3f53

Browse files
authored
Remove poetry install from release action (#140)
1 parent 298cec7 commit c4e3f53

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,20 @@ jobs:
2020
run: |
2121
# Build tests subpackage
2222
cd tests
23-
poetry install
2423
poetry build
2524
export VERSION=$(poetry version -s)
2625
cd ..
2726
2827
# Build notebooks subpackage
2928
cd notebooks
30-
poetry install
3129
poetry build
3230
cd ..
3331
3432
# Update main pyproject.toml with the correct version
3533
sed -i "s/finn-plus-tests = { version = \"\*\", optional = true }/finn-plus-tests = { version = \"$VERSION\", optional = true }/" pyproject.toml
3634
sed -i "s/finn-plus-notebooks = { version = \"\*\", optional = true }/finn-plus-notebooks = { version = \"$VERSION\", optional = true }/" pyproject.toml
37-
- name: Free disk space
38-
run: |
39-
poetry env remove --all
4035
- name: Build main package
4136
run: |
42-
poetry install
4337
poetry build
4438
- name: Publish all packages
4539
run: |

0 commit comments

Comments
 (0)