Skip to content

Force PyPi Release since it's not showing in github actions #1

Force PyPi Release since it's not showing in github actions

Force PyPi Release since it's not showing in github actions #1

Workflow file for this run

name: PyPI Release

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

(Line: 8, Col: 3): 'push' is already defined
on:
workflow_dispatch:
push:
branches:
- "main"
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build setuptools wheel twine importlib-metadata==7.2.1
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m build
twine upload dist/*