Skip to content

packaging: bundle certifi data for PyInstaller fish HTTPS #4

packaging: bundle certifi data for PyInstaller fish HTTPS

packaging: bundle certifi data for PyInstaller fish HTTPS #4

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
jobs:
pypi:
name: Publish to PyPI
runs-on: ubuntu-latest
if: "!contains(github.ref, '-dev')"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build package
run: |
python -m pip install --upgrade pip build
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_TOKEN }}
skip-existing: true