Skip to content

Create Release

Create Release #54

Workflow file for this run

on:
push:
tags:
- '*'
name: Create Release
jobs:
build_on_macos:
name: Build macOS wheels
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine build
- name: Build wheels
run: |
pyproject-build -w
- name: Build source
if: ${{ matrix.python-version == '3.10' }}
run: |
pyproject-build -s
- name: Publish wheels to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_password }}
run: |
twine upload dist/*
build_on_linux:
name: Build for Linux and upload to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Create release
uses: softprops/action-gh-release@v1
with:
name: coordIO ${{ github.ref_name }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine build
- name: Build wheels
uses: RalfG/[email protected]
with:
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp310-cp310 cp311-cp311 cp312-cp312'
- name: List files
run: |
ls -la dist/
- name: Publish wheels to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_password }}
run: |
twine upload dist/*-manylinux*.whl