Skip to content

Commit

Permalink
Merge pull request #309 from bgilbert/attestation
Browse files Browse the repository at this point in the history
workflows: omit `*.publish.attestation` files from release artifacts
  • Loading branch information
bgilbert authored Oct 31, 2024
2 parents d4c4f98 + e2c870c commit 602ddd8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,11 @@ jobs:
-e '/^## / {ok=1; next}' \
-e 'ok {print}' \
"openslide_python-$version/CHANGELOG.md" > changes
# create release; upload artifacts but not *.publish.attestation
# files created by gh-action-pypi-publish
gh release create --latest --verify-tag \
--repo "${{ github.repository }}" \
--title "OpenSlide Python $version" \
--notes-file changes \
"${{ github.ref_name }}" \
"${{ needs.pre-commit.outputs.dist-base }}/"*
"${{ needs.pre-commit.outputs.dist-base }}/"*.{tar.gz,tar.xz,whl}

0 comments on commit 602ddd8

Please sign in to comment.