Skip to content

Version 0.7.2

Version 0.7.2 #3

Workflow file for this run

name: CI
on:
workflow_dispatch:
release:
types:
- published
concurrency:
group: ${ github.workflow }-${ github.ref }
cancel-in-progress: true
jobs:
dist:
name: Distribution build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hynek/build-and-inspect-python-package@v2
publish:
name: Publish
environment: pypi
permissions:
id-token: write
attestations: write
needs: [dist]
if: github.event_name == 'release' && github.event.action == 'published'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
path: dist
name: Packages
- name: Generate artifact attestation for sdist and wheel
uses: actions/attest-build-provenance@v2
with:
subject-path: "dist/uproot_browser-*"
- uses: pypa/gh-action-pypi-publish@release/v1