Skip to content

chore: release v3.8.6 #38

chore: release v3.8.6

chore: release v3.8.6 #38

Workflow file for this run

name: Publish to NPM
on:
push:
tags:
- 'v*'
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
publish:
name: Build & Publish to npm
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10.30.3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build Library & Schematics
run: pnpm run build:lib
- name: Publish to NPM (with provenance)
run: npm publish --provenance --access public
working-directory: dist/ngx-theme-stack
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}