Skip to content

Commit 9842004

Browse files
committed
fixed path error in workflow
1 parent ecb09ed commit 9842004

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-stub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
# Must include required policy/doc files
4949
test -f pyproject.toml || { echo "Missing pyproject.toml"; exit 1; }
50-
test -f LICENSE || { echo "Missing LICENSE"; exit 1; }
50+
test -f ../LICENSE || { echo "Missing LICENSE in repo root"; exit 1; }
5151
test -f STUB-README.md || { echo "Missing STUB-README.md"; exit 1; }
5252
test -f ../SECURITY.md || { echo "Missing SECURITY.md in repo root"; exit 1; }
5353
test -f ../LICENSE-APPENDIX.md || { echo "Missing LICENSE-APPENDIX.md in repo root"; exit 1; }

pypi-stub/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "rust-python-pe-packer"
7-
version = "0.0.1"
7+
version = "0.0.5"
88
description = "Educational Rust/Python PE (Portable Executable) learning stub. No packing functionality. See SECURITY.md."
99
readme = "STUB-README.md"
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)