Skip to content

Update pythonpublish #10

Update pythonpublish

Update pythonpublish #10

Workflow file for this run

name: Upload Python Package
on:
release:
types: [created]
jobs:
build:
name: Build and upload to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
defaults:
run:
shell: python
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build setuptools wheel twine
pip install -r requirements.txt
- name: Build and publish
run: |
python -m build .
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
jobs:
build:
name: Build project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@

Check failure on line 43 in .github/workflows/pythonpublish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pythonpublish.yml

Invalid workflow file

You have an error in your yaml syntax on line 43
-19,9 +20,16 @@ jobs:
pip install build setuptools wheel twine
pip install -r requirements.txt
- name: Build and publish
run: |
python -m build .
twine upload --verbose dist/*