Skip to content

v3.5

v3.5 #3

Workflow file for this run

name: Deploy to PyPI
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Check out code
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:

Check failure on line 28 in .github/workflows/deploy_to_pypi.yaml

View workflow run for this annotation

GitHub Actions / Deploy to PyPI

Invalid workflow file

The workflow is not valid. .github/workflows/deploy_to_pypi.yaml (Line: 28, Col: 14): Unexpected value ''
# use trusted publisher, no password needed