Skip to content

.github/workflows/publish.yml #1

.github/workflows/publish.yml

.github/workflows/publish.yml #1

Workflow file for this run

name: Publish jpl-rosa to PyPI
on:
release:
types: [created]
init.py

Check failure on line 6 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '>=3.9 <4.0'
- name: Install dependencies
run: pip install build twine
- name: Build package
run: python -m build
- name: Publish package
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: twine upload dist/*