Skip to content

Commit 59bb26b

Browse files
committed
use the bash file-existence check condition
1 parent e2d5812 commit 59bb26b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish_to_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ jobs:
9999
GITHUB_TOKEN: ${{ github.token }}
100100
# Verify signature files exist
101101
run: |
102-
ls dist/*.sigstore;
103-
if ! ls dist/*.sigstore >/dev/null 2>&1; then
102+
if ! [ -e dist/*.sigstore ]; then
104103
echo "::error::Signature files not found"
105104
exit 1
106105
fi
107106
107+
108108
# Upload to GitHub Release using the `gh` CLI.
109109
# `dist/` contains the built packages, and the
110110
# sigstore-produced signatures and certificates.

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.7"
3+
version = "3.0.8"
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)