mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-22 21:09:58 +00:00
This will start publishing `@lancedb/lancedb` with the new nodejs package on our releases.
20 lines
429 B
YAML
20 lines
429 B
YAML
name: Update NodeJs package-lock.json
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: main
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
lfs: true
|
|
- uses: ./.github/workflows/update_package_lock_nodejs
|
|
with:
|
|
github_token: ${{ secrets.LANCEDB_RELEASE_TOKEN }}
|