Skip to content

Create README.md

Create README.md #43

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 "github+actions@gmail.com"
# 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 "github+actions@gmail.com"
git config --global user.name "Actions"
npm version patch -m "[skip ci] %s"
git push --follow-tags