File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -133,5 +133,5 @@ jobs:
133
133
uses : actions/upload-artifact@v4
134
134
with :
135
135
name : poml-npm-universal.tgz
136
- path : packages/poml-build/poml -*.tgz
136
+ path : packages/poml-build/pomljs -*.tgz
137
137
compression-level : 0
Original file line number Diff line number Diff line change @@ -190,8 +190,9 @@ stages:
190
190
# Publish each package
191
191
for tgz in artifacts/*.tgz; do
192
192
if [ -f "$tgz" ]; then
193
- echo "Publishing package: $tgz"
194
- npm publish "$tgz" --access public
193
+ pkg_path="$(realpath "$tgz")"
194
+ echo "Publishing package: $pkg_path"
195
+ npm publish "$pkg_path" --access public
195
196
if [ $? -eq 0 ]; then
196
197
echo "Successfully published: $tgz"
197
198
else
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " poml " ,
3
- "version" : " 0.0.5 " ,
2
+ "name" : " pomljs " ,
3
+ "version" : " 0.0.7 " ,
4
4
"description" : " Prompt Orchestration Markup Language" ,
5
5
"type" : " module" ,
6
6
"main" : " ./dist/index.cjs" ,
You can’t perform that action at this time.
0 commit comments