Skip to content

Commit

Permalink
fix CI again
Browse files Browse the repository at this point in the history
  • Loading branch information
sivukhin committed Sep 19, 2024
1 parent 4fbd0bd commit 445bb39
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 18 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,8 @@ jobs:

- name: "Publish pre-release version"
if: contains(github.ref, '-pre')
run: |
npm publish --workspace packages/libsql-core --tag next
npm publish --workspace packages/libsql-client-wasm --tag next
npm publish --workspace packages/libsql-client --tag next
run: npm publish --workspaces --tag next

- name: "Publish latest version"
if: "!contains(github.ref, '-pre')"
run: |
npm publish --workspace packages/libsql-core
npm publish --workspace packages/libsql-client-wasm
npm publish --workspace packages/libsql-client
run: npm publish --workspaces
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/libsql-client-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libsql/client-wasm",
"version": "0.12.1-pre.3",
"version": "0.12.1-pre.4",
"keywords": [
"libsql",
"database",
Expand Down Expand Up @@ -56,7 +56,7 @@
"typedoc": "rm -rf ./docs && typedoc"
},
"dependencies": {
"@libsql/core": "^0.12.1-pre.3",
"@libsql/core": "^0.12.1-pre.4",
"@libsql/libsql-wasm-experimental": "^0.0.2",
"js-base64": "^3.7.5"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/libsql-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libsql/client",
"version": "0.12.1-pre.3",
"version": "0.12.1-pre.4",
"keywords": [
"libsql",
"database",
Expand Down Expand Up @@ -102,7 +102,7 @@
"lint-staged": "lint-staged"
},
"dependencies": {
"@libsql/core": "^0.12.1-pre.3",
"@libsql/core": "^0.12.1-pre.4",
"@libsql/hrana-client": "^0.7.0",
"js-base64": "^3.7.5",
"libsql": "^0.4.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/libsql-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libsql/core",
"version": "0.12.1-pre.3",
"version": "0.12.1-pre.4",
"keywords": [
"libsql",
"database",
Expand Down

0 comments on commit 445bb39

Please sign in to comment.