fix CI #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish | |
env: | |
NPM_REGISTRY: 'https://registry.npmjs.org' | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
publish-to-npm: | |
name: "Publish new version to NPM" | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
NODE_OPTIONS: "--trace-warnings" | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- name: "Checkout this repo" | |
uses: actions/checkout@v3 | |
- name: "Setup Node.js" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
- name: "Build core" | |
run: "npm ci && npm run build" | |
working-directory: ./packages/libsql-core | |
- 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') | |
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 | |
- 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 |