Release CI #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release CI | ||
on: | ||
release: | ||
types: [published] | ||
# allow manually triggering the build | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
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 | ||
python -m pip install -U hatch | ||
- name: build otaclient package | ||
run: | | ||
hatch build -t wheel | ||
- name: build otaclient service API python package | ||
run: | | ||
pushd proto | ||
hatch build -t wheel | ||
popd | ||
cp proto/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: publish release artifacts | ||
if: ${{ github.event_name == "release" }} | ||
Check failure on line 48 in .github/workflows/release.yml GitHub Actions / Release CIInvalid workflow file
|
||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: | | ||
dist/*.whl | ||
dist/*.checksum |