Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.6.1 to 1.6.4. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.6.1...v1.6.4) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
752 B
YAML
41 lines
752 B
YAML
name: Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
jobs:
|
|
dist:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build SDist and wheel
|
|
run: pipx run build
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
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'
|
|
|
|
steps:
|
|
- uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifact
|
|
path: dist
|
|
|
|
- uses: pypa/gh-action-pypi-publish@v1.6.4
|
|
with:
|
|
user: __token__
|
|
password: ${{ secrets.pypi_password }}
|