Skip to content

Commit

Permalink
CI: publishing of Python package
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Dec 16, 2024
1 parent ca66fc6 commit 0a7fd49
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,20 @@ jobs:
- name: Download dist artifacts
uses: actions/download-artifact@v4
with:
name: artifact
name: ${{ matrix.platform }}
path: wheelhouse
merge-multiple: true

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build virtualenv
# PyPI package
- name: Build Python package
run: python -m build
Expand Down

0 comments on commit 0a7fd49

Please sign in to comment.