mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-11 06:12:58 +00:00
Changes: * Refactors the Node module to load the shared library from a separate package. When a user does `npm install vectordb`, the correct optional dependency is automatically downloaded by npm. * Brings Rust and Node versions in alignment at 0.1.2. * Add scripts and instructions to build Linux and MacOS node artifacts locally. * Add instructions for publishing the npm module and crates.
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
name: Create release commit
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
dry_run:
|
|
description: 'Just create the local commit/tags but do not push it'
|
|
required: true
|
|
default: "false"
|
|
type: choice
|
|
options:
|
|
- "true"
|
|
- "false"
|
|
part:
|
|
description: 'What kind of release is this?'
|
|
required: true
|
|
default: 'patch'
|
|
type: choice
|
|
options:
|
|
- patch
|
|
- minor
|
|
- major
|
|
|
|
jobs:
|
|
bump-version:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out main
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: main
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
lfs: true
|
|
- name: Install cargo utils
|
|
run: cargo install cargo-edit
|
|
- name: Bump versions
|
|
run: |
|
|
NEW_VERSION=$(bash ci/bump_versions.sh ${{ inputs.part }})
|
|
echo "New version: v$NEW_VERSION"
|
|
git tag v$NEW_VERSION
|
|
- name: Push new version and tag
|
|
if: ${{ inputs.dry_run }} == "false"
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.RELEASE_TOKEN }}
|
|
branch: main
|
|
tags: true |