Skip to content

Update changelog to v2.0.0 #10

Update changelog to v2.0.0

Update changelog to v2.0.0 #10

Workflow file for this run

name: deploy
on:
push:
tags:
- "v*"
jobs:
deploy:

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

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
if: startsWith(github.event.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.10"
- name: Install build
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: |
python -m build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_token }}
- name: GitHub Release
uses: softprops/action-gh-release@v1
with:
files: dist/*