Skip to content

Commit

Permalink
fix: update release workflow (#29)
Browse files Browse the repository at this point in the history
* chore: update gh action versions

* chore: use 3.10 as base version

* fix: add setuptools to dependencies
  • Loading branch information
Barabazs authored Oct 26, 2024
1 parent ab258d7 commit 0954290
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade wheel
python -m pip install --upgrade pip wheel setuptools
- name: Build wheels
run: python setup.py bdist_wheel

- name: Release to Github
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: dist/*

Expand Down

0 comments on commit 0954290

Please sign in to comment.