Skip to content

Commit

Permalink
chore: install host deps and poetry before building the package
Browse files Browse the repository at this point in the history
  • Loading branch information
deveaud-m committed Jan 28, 2025
1 parent 8a3adf3 commit 922e221
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,16 @@ jobs:
git_committer_name: "github-actions"
git_committer_email: "[email protected]"

- name: Build | Build package
- name: Install | Install host and python dependencies
run: |
apt-get -qq update
apt-get install -qq gcc git
rm -rf /var/lib/apt/lists/*
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Build | Build package
run: |
poetry build
- name: Publish | Upload package to PyPI
Expand Down

0 comments on commit 922e221

Please sign in to comment.