Skip to content

Release v3.6

Release v3.6 #2

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: "Publish to PyPI"
on:
push:
tags:
- "*"
permissions:
content: "read"

Check failure on line 12 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Publish to PyPI

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 12, Col: 3): Unexpected value 'content'
jobs:
publish:
name: "Publish to PyPI"
runs-on: "ubuntu-latest"
environment:
name: "publish"
steps:
- name: "Checkout repository"
uses: "actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b"
- name: "Setup Python"
uses: "actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5"
with:
python-version: "3.x"
- name: "Build dists"
run: |
python -m pip install build
python -m build
- name: "Publish to PyPI"
uses: "pypa/gh-action-pypi-publish@37f50c210e3d2f9450da2cd423303d6a14a6e29f"