Skip to content

Commit fd78860

Browse files
committed
Update informations for github actions.
1 parent fcae5ee commit fd78860

File tree

2 files changed

+6
-26
lines changed

2 files changed

+6
-26
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
schedule:
77
interval: "weekly"
88

9-
- package-ecosystem: "pip"
9+
- package-ecosystem: "uv"
1010
directory: "/"
1111
schedule:
1212
interval: "weekly"

.github/workflows/wheels.yml

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,8 @@ on:
55
- pull_request
66

77
jobs:
8-
build_sdist:
9-
name: Build source distribution
10-
runs-on: ubuntu-latest
11-
12-
steps:
13-
- uses: actions/checkout@v6
14-
with:
15-
fetch-depth: 0
16-
17-
- name: Build sdist
18-
run: pipx run build --sdist
19-
20-
- uses: actions/upload-artifact@v5
21-
with:
22-
name: build-sdist
23-
path: dist/*.tar.gz
24-
25-
build_wheel:
26-
name: Build wheel
8+
build:
9+
name: Build
2710
runs-on: ubuntu-latest
2811

2912
steps:
@@ -32,17 +15,16 @@ jobs:
3215
fetch-depth: 0
3316

3417
- name: Build wheel
35-
run: pipx run build --wheel
18+
run: pipx run build
3619

3720
- uses: actions/upload-artifact@v5
3821
with:
39-
name: build-wheel
4022
path: dist/*.whl
4123

4224
upload_pypi:
43-
name: Upload wheels to pypi
25+
name: Upload
4426
runs-on: ubuntu-latest
45-
needs: [build_wheel, build_sdist]
27+
needs: build
4628
environment:
4729
name: pypi
4830
url: https://pypi.org/project/qmp-kit/
@@ -53,8 +35,6 @@ jobs:
5335
steps:
5436
- uses: actions/download-artifact@v6
5537
with:
56-
pattern: build-*
5738
path: dist
58-
merge-multiple: true
5939

6040
- uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)