Merge pull request #2848 from PMEAL/issue2847_bcc #135
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 (dev) | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
build: | |
if: (! contains(github.event.head_commit.message, '[no bump]')) | |
name: Bump version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Set env variables | |
run: | | |
# The next line is very important, otherwise the line after triggers | |
# git to track the permission change, which breaks bump2version API (needs clean git folder) | |
git config core.filemode false | |
chmod +x .github/workflows/utils.sh | |
echo "VERSION_FILE=openpnm/__version__.py" >> $GITHUB_ENV | |
echo "SETUP_CFG_FILE=setup.cfg" >> $GITHUB_ENV | |
echo "${{ github.event.head_commit.message }}" | |
- name: Install dependencies | |
run: | | |
pip install bump2version | |
- name: Bump version (build) | |
run: | | |
source .github/workflows/utils.sh | |
bump_version build $VERSION_FILE | |
# Note that we don't want to create a new tag for "builds" | |
# - name: Commit files | |
# run: | | |
# REPOSITORY=${INPUT_REPOSITORY:-$GITHUB_REPOSITORY} | |
# remote_repo="https://${GITHUB_ACTOR}:${{ secrets.PUSH_ACTION_TOKEN }}@github.com/${REPOSITORY}.git" | |
# git config --local user.email "[email protected]" | |
# git config --local user.name "GitHub Action" | |
# # Commit version bump to dev ([no ci] to avoid infinite loop) | |
# git commit -m "Bump version number (build) [no ci]" -a | |
# git push "${remote_repo}" dev | |
- name: Commit files | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Bump version number (build part) | |
commit_author: Author <[email protected]> |