Skip to content

Update README.md

Update README.md #14

Workflow file for this run

name: Bump version
on:
push:
branches:
- main
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - name: Bump version
# run: |
# git config --global user.email "[email protected]"
# git config --global user.name "Actions"
# git fetch --tags
# wget -O - https://raw.githubusercontent.com/treeder/bump/master/gitbump.sh | bash
- name: Bump version npm style
run: |
git config --global user.email "[email protected]"
git config --global user.name "Actions"
npm version patch
git push --follow-tags