You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It just can be looks like a single npm script "publish": "ng build --prod && cd dist/library-name && npm publish"
I want to release that library using github actions so the steps above needs to be executed within an action, by looking in to npm-publish-action but didn't found a way to achieve that.
Any ideas?
The text was updated successfully, but these errors were encountered:
I have a library that I build with Angular CLI here https://github.com/kuncevic/rx-service
In order to release a new version of the library manually I had to to this steps:
ng build --prod
cd dist/library-name
npm publish
It just can be looks like a single npm script
"publish": "ng build --prod && cd dist/library-name && npm publish"
I want to release that library using github actions so the steps above needs to be executed within an action, by looking in to
npm-publish-action
but didn't found a way to achieve that.Any ideas?
The text was updated successfully, but these errors were encountered: