Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sivukhin committed Sep 19, 2024
1 parent 711a01b commit 4fbd0bd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ jobs:
name: "Publish new version to NPM"
runs-on: ubuntu-latest
timeout-minutes: 5
defaults:
run:
working-directory: ./packages/libsql-client
env:
NODE_OPTIONS: "--trace-warnings"
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand All @@ -32,8 +29,13 @@ jobs:
run: "npm ci && npm run build"
working-directory: ./packages/libsql-core

- name: "Install npm dependencies"
- name: "Install npm dependencies (client)"
run: "npm ci"
working-directory: ./packages/libsql-client

- name: "Install npm dependencies (client wasm)"
run: "npm ci"
working-directory: ./packages/libsql-client-wasm

- name: "Publish pre-release version"
if: contains(github.ref, '-pre')
Expand Down

0 comments on commit 4fbd0bd

Please sign in to comment.