Skip to content

Initial construction #1

Initial construction

Initial construction #1

Workflow file for this run

name: package
on:
push:
paths-ignore:
- '.gitignore'
- 'README.md'
- '.github/dependabot.yml'
- '.devcontainer/**'
- 'requirements.dev.txt'
workflow_dispatch:
jobs:
build:
name: Build wheel
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --disable-pip-version-check -r requirements.dev.txt
- name: Build wheels
run: |
python -m build
- name: Upload artifact
run: |
twine upload --username __token__ --password ${{ secrets.PYPI_TOKEN }} dist/*