Merge pull request #705 from oda-hub/reading-post-requests-gallery #141
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 version | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 'Automated Version Bump' | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "ODA Bot: version bump" | |
python -m pip install --upgrade pip | |
pip install bump2version | |
bump2version --verbose --tag patch | |
# - name: Push changes | |
# uses: ad-m/github-push-action@master | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# tags: true |