Skip to content

Workflow to update pypi #3

Workflow to update pypi

Workflow to update pypi #3

Workflow file for this run

name: Release
on:
workflow_dispatch:
pull_request:
release:
types:
- published
jobs:
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build SDist and wheel
run: pipx run build
- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*
- name: Check metadata
run: pipx run twine check dist/*
publish:
needs: [dist]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
environment: pypi
permissions:
id-token: ${{ secrets.PYPI_TOKEN }}

Check failure on line 33 in .github/workflows/update_wheels.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/update_wheels.yml (Line: 33, Col: 17): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.PYPI_TOKEN .github/workflows/update_wheels.yml (Line: 33, Col: 17): Unexpected value '${{ secrets.PYPI_TOKEN }}'
steps:
- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: dist
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1