Skip to content

v2.3.0 — PowerShell support, semantic search fix, compression port complete #52

v2.3.0 — PowerShell support, semantic search fix, compression port complete

v2.3.0 — PowerShell support, semantic search fix, compression port complete #52

Workflow file for this run

name: Publish to npm
on:
release:
types: [published]
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'
jobs:
build-and-publish:
name: Build and publish to npm
runs-on: ubuntu-latest
environment:
name: npm
url: https://www.npmjs.com/package/token-goat
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Build
run: npm run build
- name: Publish
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}