This repository was archived by the owner on Feb 17, 2026. It is now read-only.
chore(release): bump monorepo patch versions #6
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: release | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| publish: | |
| name: 'build & publish' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: 16 | |
| - name: Install Dependencies | |
| run: yarn | |
| - name: Prepare NPM Credentials | |
| run: | | |
| echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> $HOME/.npmrc | |
| npm config set always-auth true | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Create Release Pull Request or Publish packages | |
| uses: changesets/action@master | |
| with: | |
| publish: yarn release | |
| commit: 'chore(release): update monorepo packages versions' | |
| title: 'Upcoming Release Changes' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |