Skip to content

Commit

Permalink
chore: try to fix build by installing poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
xxthunder committed Mar 27, 2024
1 parent 31e6976 commit 01142f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ jobs:

# Do a dry run of release
- name: Test release
uses: python-semantic-release/python-semantic-release@v9.0.3
uses: python-semantic-release/python-semantic-release@v9.1.1
if: github.ref_name != 'develop'
with:
root_options: --noop

# On main branch: actual release + upload to PyPI & GitHub
- name: Release
uses: python-semantic-release/python-semantic-release@v9.0.3
uses: python-semantic-release/python-semantic-release@v9.1.1
id: release
if: github.ref_name == 'develop'
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ version_variables = [
"src/spl_core/__init__.py:__version__",
"docs/conf.py:release",
]
build_command = "poetry build"
build_command = "pip install poetry && poetry build"

[tool.semantic_release.changelog]
exclude_commit_patterns = [
Expand Down

0 comments on commit 01142f8

Please sign in to comment.