try push through PR #90
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 workflow | |
on: | |
push: | |
branches: | |
- master | |
# - main | |
jobs: | |
bump-version: | |
name: Bump package version | |
if: "!contains(github.event.head_commit.message, 'Bump version')" | |
runs-on: ubuntu-20.04 | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | |
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build bump2version | |
- name: Bump version | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "ODA Release Bot" | |
bump2version patch --verbose --commit --tag | |
bump2version release --verbose --commit --tag | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
reviewers: "volodymyrss" | |
assignees: "volodymyrss" | |
# - name: Push changes | |
# uses: ad-m/github-push-action@master | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# # ${{ secrets.BOT_SECRET }} | |
# branch: ${{ github.ref }} | |
publish-version: | |
name: Publish new package version | |
if: "contains(github.event.head_commit.message, 'Bump version')" | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Build package | |
run: python -m build | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | |
with: | |
user: __token__ | |
verify_metadata: false | |
password: ${{ secrets.PYPI_API_TOKEN }} |