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?