Skip to content

feat: update Node.js version to 16 and bump package version to 1.0.1 #2

feat: update Node.js version to 16 and bump package version to 1.0.1

feat: update Node.js version to 16 and bump package version to 1.0.1 #2

Workflow file for this run

name: Build and Publish
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
- name: Build
run: npm run build
- name: NPM Publish (@pezzo/llm-toolkit)
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}