Publishing Package with Semantic Versioning #8
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: Release Semantic | |
run-name: Publishing Package with Semantic Versioning | |
on: | |
workflow_dispatch: | |
jobs: | |
release: | |
name: Publish the npm package | |
runs-on: ubuntu-latest | |
environment: Production | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.ref_name }} | |
fetch-depth: 0 # Ensure the full history is fetched to push changes back | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '19' | |
- name: Install dependencies and build | |
run: | | |
yarn install --frozen-lockfile | |
yarn build | |
- name: Configure Git and create release branch for version update | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git checkout -b ci-version-update | |
git push origin ci-version-update | |
- name: Configure NPM registry | |
run: npm config set registry 'https://registry.npmjs.org/' | |
- name: Authenticate with NPM | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
- name: Bump versions and publish packages | |
id: release | |
run: | | |
node_modules/.bin/lerna publish --conventional-commits --create-release github --message 'chore(release): update version and publish package(s)' --yes | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push the version change | |
if: steps.release.conclusion == 'success' | |
uses: CasperWA/push-protected@v2 | |
with: | |
token: ${{ secrets.PAT }} | |
branch: ${{ github.ref_name }} | |
- name: Delete the intermediate branch | |
if: steps.release.conclusion == 'success' | |
run: | | |
git branch -D ci-version-update &>/dev/null || true | |
git push origin :ci-version-update &>/dev/null || true |