File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ name: CI
4
4
on : [push, pull_request, workflow_dispatch]
5
5
6
6
permissions :
7
- contents : read
7
+ contents : write
8
8
9
9
jobs :
10
- distros :
10
+ build :
11
11
name : " ${{ matrix.os }} with Python ${{ matrix.python-version }}"
12
12
runs-on : ${{ matrix.os }}
13
13
strategy :
39
39
- name : " build python-ldap ${{ matrix.python-version }}"
40
40
run : " python -m build"
41
41
- name : Upload a Build Artifact
42
- uses : actions/upload-artifact@v3.1.2
42
+ uses : actions/upload-artifact@v3
43
43
with :
44
44
# A file, directory or wildcard pattern that describes what to upload
45
- path : dist/*
45
+ path : dist/*.whl
46
+ release :
47
+ name : " Release"
48
+ runs-on : ubuntu-latest
49
+ steps :
50
+ - name : Download Artifacts
51
+ # will download and upack all files from the default artifact named 'artifact'
52
+ uses : actions/download-artifact@v3
53
+ - name : GH Release
54
+ uses : softprops/action-gh-release@v0.1
55
+ with :
56
+ name : latest
57
+ files : |
58
+ *.whl
You can’t perform that action at this time.
0 commit comments