Skip to content

Merge pull request #29 from kuffmode/ds-saving #8

Merge pull request #29 from kuffmode/ds-saving

Merge pull request #29 from kuffmode/ds-saving #8

Workflow file for this run

name: Upload Python Package
on:
push:
branches: main
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: release
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1