Merge branch 'release/2.14.4' #370
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: 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/upload-artifact@v3.1.1 | |
with: | |
name: ${{ github.sha }} | |
path: dist/* |