Skip to content

Merge pull request #44 from desci-labs/m0ar/composedb-dep-fix #8

Merge pull request #44 from desci-labs/m0ar/composedb-dep-fix

Merge pull request #44 from desci-labs/m0ar/composedb-dep-fix #8

Workflow file for this run

name: Publish codex-lib to npmjs
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: "npm"
cache-dependency-path: "package-lock.json"
check-latest: false
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: |
if ! npm --workspace packages/composedb view .@${npm_package_version} > /dev/null; then
echo "New version of composedb package; running publish..."
npm --workspace packages/composedb publish --access public
else
echo "This version of the composedb package already exists on npm; doing nothing."
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm --workspace packages/lib run build
- run: |
if ! npm --workspace packages/lib view .@${npm_package_version} > /dev/null; then
echo "New version of lib package; running publish..."
npm --workspace packages/lib publish --access public
else
echo "This version of the lib package already exists on npm; doing nothing."
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}