Skip to content

Commit

Permalink
Upload wheels in deploy step (testpypi on push for now to test if it …
Browse files Browse the repository at this point in the history
…works)
  • Loading branch information
maxnoe committed Nov 20, 2023
1 parent 8806cad commit 758262f
Showing 1 changed file with 56 additions and 10 deletions.
66 changes: 56 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,77 @@ name: Deploy

on:
push:
tags:
- 'v*'
# tags:
# - 'v*'

jobs:
deploy:
runs-on: ubuntu-latest
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@v2
- 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

# make sure we have version info
- run: git fetch --tags
build_sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
fetch-depth: 0
fetch-tags: true

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
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
steps:
- name: Download artifacts
uses: actions/download-artifact@v3

- name: check
run: ls -l dist/

- name: Publish package
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/

0 comments on commit 758262f

Please sign in to comment.