File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build brotli wheel
2
+
3
+ on :
4
+ push : {}
5
+
6
+ jobs :
7
+ build :
8
+ strategy :
9
+ fail-fast : false
10
+ matrix :
11
+ os :
12
+ - ubuntu-latest
13
+ runs-on : ${{ matrix.os }}
14
+ timeout-minutes : 60
15
+ steps :
16
+ - uses : actions/setup-python@v5
17
+ with :
18
+ python-version : " 3.14-dev"
19
+ - name : Build wheel
20
+ shell : bash
21
+ run : |
22
+ python -m pip wheel -w dist brotli==1.1.0
23
+ - uses : actions/upload-artifact@v4
24
+ with :
25
+ name : ${{ matrix.os }}
26
+ path : ./dist/*.whl
27
+ deploy :
28
+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
29
+ needs :
30
+ - build
31
+ runs-on : ubuntu-latest
32
+ permissions :
33
+ contents : write
34
+ steps :
35
+ - run : mkdir dist
36
+ - uses : actions/download-artifact@v4
37
+ with :
38
+ path : ./dist
39
+ - name : Release
40
+ uses : ncipollo/release-action@36e78ab6296394ce36f72f6488e68c2353b50514
41
+ with :
42
+ artifacts : dist/**/*.whl
You can’t perform that action at this time.
0 commit comments