Skip to content

Commit

Permalink
ci: fix semantic release python version (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
julesbertrand authored May 31, 2024
1 parent 84bf42a commit 9830cfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Python Semantic Release
id: python-semantic-release
uses: python-semantic-release/python-semantic-release@v9.7.0 # need python >=3.12 to use latest versions
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.RELEASE_ACCESS_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ version_toml = ["pyproject.toml:tool.poetry.version"]
branch = "main"
upload_to_pypi = false
upload_to_release = true
build_command = "pip install poetry && poetry build"
build_command = "pip install poetry && poetry env use 3.10 && poetry build"
commit_message = "chore(release): {version}\n\n[skip ci]\nAutomatically generated by semantic-release"
tag_format = "{version}"

Expand Down

0 comments on commit 9830cfd

Please sign in to comment.