Skip to content

Commit 38eb0f2

Browse files
committed
brotli: build brotli-1.1.0 Linux cp314 wheel
0 parents  commit 38eb0f2

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/brotli.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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

0 commit comments

Comments
 (0)