Skip to content

Commit 05cb0b7

Browse files
committed
Fix: Use GITHUB_WORKSPACE for bundle zip path
1 parent fddf9ad commit 05cb0b7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/publish-workflow.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,11 @@ jobs:
111111
echo "Bundle contents:"
112112
ls -la
113113
114-
# Create the bundle zip
115-
cd ../../../..
114+
# Create the bundle zip (go back to repo root)
115+
cd "$GITHUB_WORKSPACE"
116116
zip -r bundle.zip bundle/
117117
echo "Bundle created: bundle.zip"
118+
ls -la bundle.zip
118119
119120
- name: Upload to Maven Central
120121
env:

0 commit comments

Comments
 (0)