File tree Expand file tree Collapse file tree 2 files changed +54
-1
lines changed Expand file tree Collapse file tree 2 files changed +54
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - v*
7
+
8
+ jobs :
9
+ build_dist :
10
+ name : Build source distribution
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+
15
+ - name : Build dist and wheel
16
+ run : pipx run build --sdist --wheel
17
+
18
+ - uses : actions/upload-artifact@v4
19
+ with :
20
+ name : cibw-dist
21
+ path : dist/*
22
+
23
+ upload_pypi :
24
+ needs : [build_dist]
25
+ runs-on : ubuntu-latest
26
+ environment : release
27
+ permissions :
28
+ id-token : write
29
+ steps :
30
+ - uses : actions/download-artifact@v4
31
+ with :
32
+ pattern : cibw-*
33
+ path : dist
34
+ merge-multiple : true
35
+
36
+ - uses : pypa/gh-action-pypi-publish@release/v1
37
+ # with:
38
+ # repository-url: https://test.pypi.org/legacy/
39
+
40
+ upload_release :
41
+ needs : [build_dist]
42
+ runs-on : ubuntu-latest
43
+ steps :
44
+ - uses : actions/download-artifact@v4
45
+ with :
46
+ pattern : cibw-*
47
+ path : dist
48
+ merge-multiple : true
49
+
50
+ - name : Release
51
+ uses : softprops/action-gh-release@v1
52
+ with :
53
+ files : dist/*
Original file line number Diff line number Diff line change 1
- __version__ = "0.0.16 "
1
+ __version__ = "0.0.17 "
You can’t perform that action at this time.
0 commit comments