Skip to content

v0.1.2

v0.1.2 #1

Workflow file for this run

name: Release
on:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build wheel
run: |
pip wheel . --no-deps -w deploy
- name: Upload package
uses: actions/upload-artifact@v2
with:
name: wheels
path: deploy/
if-no-files-found: error
- name: Publish on PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: deploy/