Skip to content

Fix ng command and update to Angular 18.2.0 #248

Fix ng command and update to Angular 18.2.0

Fix ng command and update to Angular 18.2.0 #248

Workflow file for this run

name: NPM Publish
on:
push:
branches:
- main
- main-v[0-9]+
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version-file: "./package.json"
registry-url: https://registry.npmjs.org
always-auth: true
- run: yarn install
- run: yarn build:prod
- run: yarn publish ./dist/klippa/ngx-enhancy-forms
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}