Skip to content

Commit 0954290

Browse files
authored
fix: update release workflow (#29)
* chore: update gh action versions * chore: use 3.10 as base version * fix: add setuptools to dependencies
1 parent ab258d7 commit 0954290

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/build-and-release.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,22 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Set up Python
15-
uses: actions/setup-python@v3
15+
uses: actions/setup-python@v5
1616
with:
17-
python-version: "3.x"
17+
python-version: "3.10"
1818

1919
- name: Install dependencies
2020
run: |
21-
python -m pip install --upgrade pip
22-
python -m pip install --upgrade wheel
21+
python -m pip install --upgrade pip wheel setuptools
2322
2423
- name: Build wheels
2524
run: python setup.py bdist_wheel
2625

2726
- name: Release to Github
28-
uses: softprops/action-gh-release@v1
27+
uses: softprops/action-gh-release@v2
2928
with:
3029
files: dist/*
3130

0 commit comments

Comments
 (0)