Skip to content

EDA Toolkit 0.0.15

EDA Toolkit 0.0.15 #32

Workflow file for this run

name: Publish `eda_toolkit` Python Package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # Check out the code from the repository
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Setup with Python 3.x
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: List files in the directory (debug step)
run: ls -la
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_KEY }}
run: |
python -m build # Use build to handle pyproject.toml
twine upload dist/*