Skip to content

release: 2.14.3

release: 2.14.3 #366

Workflow file for this run

name: build
on:
push:
branches:
- main
- release/**
jobs:
dist:
name: Create wheel and source distribution
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- run: |
pip install wheel
python setup.py sdist bdist_wheel
- uses: actions/[email protected]
with:
name: ${{ github.sha }}
path: dist/*