Skip to content

Commit

Permalink
Merge pull request #5 from tochka-public/fix/poetry-building
Browse files Browse the repository at this point in the history
fix: Fixed poetry
  • Loading branch information
Moootya authored Feb 24, 2024
2 parents 23e8b8e + 05e1864 commit b1dcf8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,16 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
python -m pip install --upgrade pip poetry
poetry config virtualenvs.create false
poetry install --no-root
- name: Build package
run: python -m build
run: poetry build

- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "ml-pipeline-engine"
readme = "README.md"
version = "0.1.0"
version = "0.2.0"
authors = [
"Konyaev Matvey",
"Vasiliy Pankov",
Expand Down

0 comments on commit b1dcf8d

Please sign in to comment.