-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (42 loc) · 1.12 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Release CI
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
# use the minimum py ver we support to generate the wheel
python-version: 3.8
- name: install build deps
run: |
python -m pip install -U pip build
python -m pip install -r proto/requirements.txt
- name: build otaclient package
run: |
python -m build --wheel --outdir dist/ .
- name: build a proto binary
run: |
pushd proto
make
popd
cp proto/pb2/dist/*.whl dist
- name: calculate checksum
run: |
for WHL in dist/*.whl; \
do \
sha256sum ${WHL} | sed -E "s@(\w+)\s+.*@sha256:\1@" > \
${WHL}.checksum; \
done
- name: release
uses: softprops/action-gh-release@v1
with:
files: |
dist/*.whl
dist/*.checksum