Skip to content

Upload Python Package #3

Upload Python Package

Upload Python Package #3

Workflow file for this run

name: Upload Python Package
on:
release:
types: [published]
jobs:
release-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Build release distributions
run: |
python -m pip install --upgrade pip
pip install build
python -m build
- name: Upload release distributions
uses: actions/upload-artifact@v4
with:
name: release-dists
path: dist/
pypi-publish:
runs-on: ubuntu-latest
needs:
- release-build
envionment: release

Check failure on line 29 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / Upload Python Package

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 29, Col: 5): Unexpected value 'envionment'
permissions:
id-token: write
steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v4
with:
name: release-dists
path: dist/
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1