Skip to content

Update NPM packages and README Version Badge #4

Update NPM packages and README Version Badge

Update NPM packages and README Version Badge #4

Workflow file for this run

name: Update README Version Badge
on:
push:
branches:
- main # Ensure this is your default branch
paths:
- "package.json"
workflow_dispatch:
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update README
run: |
VERSION=$(jq -r '.version' package.json)
sed -i "s/Version [0-9]*\.[0-9]*\.[0-9]*/Version $VERSION/g" README.md
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add README.md
git commit -m "Update version badge"
git push