Skip to content

Commit

Permalink
ci: fix ci
Browse files Browse the repository at this point in the history
the song and dance for ci begins...
  • Loading branch information
kamoo1 committed Mar 24, 2024
1 parent 6e26a92 commit 0a56b03
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
with:
python-version: '3.9'
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install python-semantic-release==8.1.1 poetry==1.8.2
poetry install
# to bypass protected branch rules:
# https://python-semantic-release.readthedocs.io/en/latest/automatic-releases/github-actions.html#example-workflow (warnings section)
# https://github.com/python-semantic-release/python-semantic-release/issues/311
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ commit_parser = "angular"
logging_use_named_masks = false
major_on_zero = false
tag_format = "v{version}"
build_command = "pip install poetry && make"
build_command = "make vendors && make"
[tool.semantic_release.branches.main]
match = "(main|master)"
prerelease = false
Expand Down

0 comments on commit 0a56b03

Please sign in to comment.