Dependency Updates and Code Improvements #15
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: release | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [closed] | |
env: | |
CI: true | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Pull Request Merged | |
if: github.event.pull_request.merged == false | |
run: | | |
echo 'The pull request has not been merged' | |
exit 1 | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Setup .npmrc | |
shell: bash | |
run: | | |
npm set registry=https://registry.npmjs.org/ | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NODE_AUTH_TOKEN }}" > ~/.npmrc | |
- name: Ensure access | |
shell: bash | |
run: npm whoami | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} | |
- name: Config git user | |
shell: bash | |
run: | | |
git config --global user.name "${{ github.actor }}" | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
- name: Install dependencies | |
run: sudo apt-get install -y libpcsclite1 libpcsclite-dev | |
- name: restore lerna | |
uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
run: yarn | |
- name: Build | |
run: npm run build | |
- name: Get Prev Version | |
shell: bash -ex {0} | |
run: | | |
PREV_VERSION=$(node -p 'require("./lerna.json").version') | |
echo "::set-env name=PREV_VERSION::${PREV_VERSION}" | |
- name: Bump versions and publish packages | |
run: | | |
npx lerna version --yes --conventional-commits --create-release github --message 'chore(release): publish' | |
npx lerna publish from-package --yes | |
- name: Get Current Version | |
shell: bash -ex {0} | |
run: | | |
CURRENT_VERSION=$(node -p 'require("./lerna.json").version') | |
echo "::set-env name=CURRENT_VERSION::${CURRENT_VERSION}" | |
- name: Create comment | |
uses: actions/github-script@v7 | |
if: env.PREV_VERSION != env.CURRENT_VERSION | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'NPM package v${{env.CURRENT_VERSION}} has been published 🎉' | |
}) |