Move env definition to correct place #29
Workflow file for this run
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: Deploy | |
on: | |
push: | |
# test on everything for debugging the workflow | |
# tags: | |
# - 'v*' | |
# to test upload to test pypi, git versions not allowed | |
env: | |
SETUPTOOLS_SCM_PRETEND_VERSION_FOR_EVENTIO: 0.0.0dev1 | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macOS-11] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: actions/setup-python@v4 | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir dist/ | |
env: | |
# only build cpython | |
CIBW_BUILD: "cp*" | |
# exclude 32 bit and musl architectures to reduce build time | |
# these shouldn't be needed | |
CIBW_SKIP: "*-win32 *-manylinux_i686 *musllinux*" | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./dist/*.whl | |
name: wheels | |
build_sdist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python --version | |
pip install -U build | |
python -m build --sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./dist/*.tar.gz | |
name: sdist | |
pypi_upload: | |
runs-on: ubuntu-latest | |
needs: | |
- build_wheels | |
- build_sdist | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
- name: preparing upload | |
run: | | |
ls -l wheels sdist | |
mkdir dist | |
cp wheels/* sdist/* dist/ | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.test_pypi_password }} | |
repository_url: https://test.pypi.org/legacy/ |