Skip to content

Commit

Permalink
ci: address more action errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zieka committed Dec 19, 2024
1 parent e52e80a commit 27a5767
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ jobs:
- name: Install dependencies
run: |
uv sync --all-extras --python 3.9
source .venv/bin/activate
- name: Check sentence casing
run: poe check-sentence-casing
run: |
source .venv/bin/activate
poe check-sentence-casing
- name: Check options
run: poe check-options
run: |
source .venv/bin/activate
poe check-options
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: Install dependencies
run: |
uv sync --all-extras --python 3.9
source .venv/bin/activate
- name: Bump version and commit change
run: |
source .venv/bin/activate
semantic-release version --${{ github.event.inputs.scope }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -50,5 +50,6 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
source .venv/bin/activate
python -m build
python -m twine upload dist/*

0 comments on commit 27a5767

Please sign in to comment.