Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish NPM Packages On Release | |
on: | |
release: | |
types: [created] | |
concurrency: npm_publish | |
jobs: | |
publish-packages: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
registry-url: https://registry.npmjs.org/ | |
- run: npm ci | |
- run: npm run update-versions ${{ github.event.release.tag_name }} libs/ng-doc-portal/package.json,libs/ng-doc-portal-plugin/package.json | |
- run: npx nx build ng-doc-portal | |
- run: npm publish dist/libs/ng-doc-portal | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | |
- run: npx nx build ng-doc-portal-plugin | |
- run: npm publish dist/libs/ng-doc-portal-plugin | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | |
- uses: stefanzweifel/[email protected] | |
with: | |
token: ${{ secrets.ORG_PAT }} | |
branch: main | |
commit_message: auto-bump to ${{ github.event.release.tag_name }} | |
commit_author: Zachary Kipping <[email protected]> |