Skip to content

Commit 0db0c1c

Browse files
authored
Fix bumping version bugs (0.0.7) (#59)
1 parent 2238194 commit 0db0c1c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,5 @@ jobs:
133133
uses: actions/upload-artifact@v4
134134
with:
135135
name: poml-npm-universal.tgz
136-
path: packages/poml-build/poml-*.tgz
136+
path: packages/poml-build/pomljs-*.tgz
137137
compression-level: 0

azure-pipelines.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,9 @@ stages:
190190
# Publish each package
191191
for tgz in artifacts/*.tgz; do
192192
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
195196
if [ $? -eq 0 ]; then
196197
echo "Successfully published: $tgz"
197198
else

packages/poml-build/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "poml",
3-
"version": "0.0.5",
2+
"name": "pomljs",
3+
"version": "0.0.7",
44
"description": "Prompt Orchestration Markup Language",
55
"type": "module",
66
"main": "./dist/index.cjs",

0 commit comments

Comments
 (0)