version upgrade for release #117
Workflow file for this run
This file contains hidden or 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 On NPMJS | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| if: github.event.pull_request.merged == true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js 16 | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '16' | |
| registry-url: https://registry.npmjs.org/ | |
| - name: Set Git Config | |
| run: | | |
| git config --global user.email "ci-build@aemforms" | |
| git config --global user.name "ci-build" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ADOBE_GH_TOKEN }} | |
| GH_TOKEN: ${{ secrets.ADOBE_GH_TOKEN }} | |
| - name: Install Dependencies | |
| run: | | |
| npm install | |
| npx lerna bootstrap | |
| - name: Run Build | |
| run: | | |
| npx lerna run build | |
| - name: Authenticate with NPM Registry | |
| run: | | |
| echo "registry=https://registry.npmjs.org/" >> .npmrc | |
| echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc | |
| npm whoami | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Discard Uncommitted Changes | |
| run: git reset --hard | |
| - name: Version & Publish | |
| run: | | |
| npx lerna version patch --no-push --yes -m ":release" --force-publish | |
| npx lerna publish from-package --yes | |
| git push origin HEAD:main --tags | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |