Skip to content

Commit

Permalink
release: v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mythie committed Mar 15, 2024
1 parent f9f94e6 commit d1232d8
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,11 @@ jobs:
echo "//npm.pkg.github.com/:_authToken=$GHPR_TOKEN" >> ~/.npmrc
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
if git log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+$";
if git log -1 --pretty=%B | grep "^release: v[0-9]\+\.[0-9]\+\.[0-9]\+$";
then
npm publish --registry="//registry.npmjs.org/" --access public
npm publish --registry="//npm.pkg.github.com/" --access public
elif git log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+";
elif git log -1 --pretty=%B | grep "^release: v[0-9]\+\.[0-9]\+\.[0-9]\+";
then
npm publish --registry="//registry.npmjs.org/" --tag next --access public
npm publish --registry="//npm.pkg.github.com/" --tag next --access public
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"engines": {
"node": ">= 10"
}
}
}
2 changes: 1 addition & 1 deletion npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"engines": {
"node": ">= 10"
}
}
}
2 changes: 1 addition & 1 deletion npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"libc": [
"glibc"
]
}
}
2 changes: 1 addition & 1 deletion npm/linux-arm64-musl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"libc": [
"musl"
]
}
}
2 changes: 1 addition & 1 deletion npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"libc": [
"glibc"
]
}
}
2 changes: 1 addition & 1 deletion npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"libc": [
"musl"
]
}
}
2 changes: 1 addition & 1 deletion npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"engines": {
"node": ">= 10"
}
}
}

0 comments on commit d1232d8

Please sign in to comment.