Skip to content

Commit 746cfae

Browse files
committed
remove the unnecesary file existence checkwq
1 parent 59bb26b commit 746cfae

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.github/workflows/publish_to_pypi.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,10 @@ jobs:
9797
- name: Upload artifact signatures to GitHub Release
9898
env:
9999
GITHUB_TOKEN: ${{ github.token }}
100-
# Verify signature files exist
101-
run: |
102-
if ! [ -e dist/*.sigstore ]; then
103-
echo "::error::Signature files not found"
104-
exit 1
105-
fi
106-
107-
108100
# Upload to GitHub Release using the `gh` CLI.
109101
# `dist/` contains the built packages, and the
110102
# sigstore-produced signatures and certificates.
111-
gh release upload
112-
'${{ github.ref_name }}' dist/**
113-
--repo '${{ github.repository }}'
103+
run: >-
104+
gh release upload
105+
'${{ github.ref_name }}' dist/**
106+
--repo '${{ github.repository }}'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "xrpl-py-release-test-1"
3-
version = "3.0.8"
3+
version = "3.0.9"
44
description = "A complete Python library for interacting with the XRP ledger"
55
readme = "README.md"
66
repository = "https://github.com/XRPLF/xrpl-py"

0 commit comments

Comments
 (0)