Skip to content

feat(build): add ci wheel packaging #2

feat(build): add ci wheel packaging

feat(build): add ci wheel packaging #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-wheel:
name: Build Wheel
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux_2_34_x86_64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build wheel
uses: ./.github/actions/build-wheel
- name: Upload repaired wheel
uses: actions/upload-artifact@v4
with:
name: ecc-tools-wheel
path: dist/wheel/repaired/ecc_tools-*.whl
retention-days: 7
if-no-files-found: error
- name: Upload checksums
uses: actions/upload-artifact@v4
with:
name: checksums
path: dist/wheel/SHA256SUMS
retention-days: 7