Skip to content

Commit 675e2a4

Browse files
committed
"Fixup workflow, only upload files pypi can handle"
1 parent e4bb571 commit 675e2a4

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: github.event_name == 'release'
3030
environment:
3131
name: pypi
32-
url: https://pypi.org/p/your-package-name
32+
url: https://pypi.org/p/camelot-py
3333
permissions:
3434
id-token: write
3535
contents: write
@@ -60,11 +60,12 @@ jobs:
6060
6161
- name: Publish Python 🐍 distribution 📦 to PyPI
6262
uses: pypa/gh-action-pypi-publish@release/v1
63-
63+
with:
64+
packages_dir: "dist" # Specify the directory
6465
- name: Upload artifact signatures to GitHub Release
6566
env:
6667
GITHUB_TOKEN: ${{ github.token }}
6768
run: >-
6869
gh release upload
69-
"${{ github.event.release.tag_name }}" ./dist/*.sig ./dist/*.crt
70+
"${{ github.event.release.tag_name }}" ./dist/*.sig ./dist/*.crt ./dist/*.sigstore.json
7071
--repo "$GITHUB_REPOSITORY"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "camelot-py"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
description = "PDF Table Extraction for Humans."
55
authors = [
66
{name = "Vinayak Mehta", email = "vmehta94@gmail.com"},

0 commit comments

Comments
 (0)