Skip to content

Merge pull request #633 from conda/pre-commit-ci-update-config #284

Merge pull request #633 from conda/pre-commit-ci-update-config

Merge pull request #633 from conda/pre-commit-ci-update-config #284

Workflow file for this run

name: publish
on:
release:
types:
- published
push:
branches: [master, main]
jobs:
packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: build
run: |
python -m pip install wheel twine build
python -m build
- name: Check files
run: |
ls dist
shell: bash
- name: Test wheels
run: |
python -m twine check dist/*
shell: bash
- name: Publish a Python distribution to PyPI
if: ${{ github.event_name == 'release' }}
uses: pypa/gh-action-pypi-publish@v1.8.14
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}