chore: Change Blue Orange Project info (#35) #9
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: Version Bump | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
bump-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Bump version and push changes | |
run: | | |
# Bump version using npm version patch (increment patch version) | |
npm version minor | |
# Push changes back to the repository | |
git config --local user.email "sabrinamedwinter@gmail.com" | |
git config --local user.name "Sabrina Medwinter" | |
git commit -am "Bump version" | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTION }} |