Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,45 +49,6 @@ jobs:
- name: publish-dist-to-pypi
uses: pypa/gh-action-pypi-publish@release/v1

github-release:
name: >-
sign-dist-via-sigstore-and-upload-to-github-release
needs:
- publish-to-pypi
runs-on: ubuntu-latest

permissions:
contents: write
id-token: write

steps:
- name: download-dists
uses: actions/download-artifact@v4
with:
name: pkg-dist
path: dist/
- name: sign-dists
uses: sigstore/gh-action-sigstore-python@v3.0.0
with:
inputs: >-
./dist/*.tar.gz
./dist/*.whl
- name: create-github-release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release create
'${{ github.ref_name }}'
--repo '${{ github.repository }}'
--notes ""
- name: upload-artifact-signature-to-github-release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release upload
'${{ github.ref_name }}' dist/**
--repo '${{ github.repository }}'

publish-to-test-pypi:
name: publish-to-test-pypi
if: startsWith(github.ref, 'refs/heads/development')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "empiarreader"
version = "0.0.15"
version = "0.0.16"
description = "EMPIARReader provides utilities to lazily load data from EMPIAR into a machine-learning-friendly dataset format or to locally download the files."
readme = "README.md"
requires-python = ">=3.8"
Expand Down
Loading