Merge branch 'misc-dev' of https://github.com/FemboyKZ/bot into misc-dev #84
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: Bump bot dev version | |
on: | |
push: | |
branches: [misc-dev] | |
paths-ignore: | |
- LICENSE | |
- README.md | |
- .gitignore | |
- '.github/*' | |
pull_request: | |
branches: [misc-dev] | |
paths-ignore: | |
- LICENSE | |
- README.md | |
- .gitignore | |
- '.github/*' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Bump version | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "GitHub Actions" | |
npm version patch | |
git push origin misc-dev |