Skip to content

v0.6.25: state code fix, blackout mode, headless, x402, approval webhook #23

v0.6.25: state code fix, blackout mode, headless, x402, approval webhook

v0.6.25: state code fix, blackout mode, headless, x402, approval webhook #23

Workflow file for this run

name: Build and publish wheels
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
build-wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
env:
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-*"
CIBW_SKIP: "*-musllinux_*"
CIBW_BEFORE_BUILD: "pip install cython setuptools"
CIBW_BUILD_VERBOSITY: 2
POP_VAULT_COMPILED_SALT: ${{ secrets.POP_VAULT_COMPILED_SALT }}
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl
publish:
needs: build-wheels
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
permissions:
id-token: write # required for Sigstore attestation signing (PEP 740)
steps:
- uses: actions/download-artifact@v4
with:
pattern: wheels-*
merge-multiple: true
path: dist/
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
attestations: true