Skip to content

ci: reduce frequency (#571) #353

ci: reduce frequency (#571)

ci: reduce frequency (#571) #353

Workflow file for this run

name: CD
on:
workflow_dispatch:
push:
branches:
- main
release:
types:
- published
jobs:
dist:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v2
publish:
needs: [dist]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
environment:
name: pypi
url: https://pypi.org/p/hist
permissions:
id-token: write
attestations: write
contents: read
steps:
- uses: actions/download-artifact@v4
with:
name: Packages
path: dist
- name: Generate artifact attestation for sdist and wheel
uses: actions/attest-build-provenance@173725a1209d09b31f9d30a3890cf2757ebbff0d # v1.1.2
with:
subject-path: "dist/hist-*"
- uses: pypa/gh-action-pypi-publish@release/v1