Skip to content

fix: looks for groups instead of skip_install #15

fix: looks for groups instead of skip_install

fix: looks for groups instead of skip_install #15

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
release-pypi:
name: release-pypi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: "x64"
- name: Build artifacts
run: |
pipx run build
- name: Upload to Pypi
run: |
pip install twine
twine upload --username __token__ --password ${{ secrets.PYPI_TOKEN }} dist/*