Skip to content

chore: bump version to 0.5.0 #24

chore: bump version to 0.5.0

chore: bump version to 0.5.0 #24

Workflow file for this run

name: Publish NPM Package
on:
workflow_dispatch: # Trigger manually through GitHub Actions interface
push:
tags:
- "v*" # Trigger on version tags (e.g., v1.0.0)
env:
NODE_VERSION: lts/hydrogen
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Publish to NPM
run: scripts/publish-lib.sh
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}