Skip to content

chore: version bump to v1.4.7 #77

chore: version bump to v1.4.7

chore: version bump to v1.4.7 #77

Workflow file for this run

name: Semantic Release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
concurrency: release
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Python Semantic Release
uses: relekang/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository_username: __token__
repository_password: ${{ secrets.PYPI_TOKEN }}
build_command: pip install build && python -m build
merge-master-back-to-dev:
runs-on: ubuntu-latest
needs:
- release
steps:
- uses: actions/checkout@v2
- name: Set Git config
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
- name: Merge master back to dev
run: |
git fetch --unshallow
git checkout develop
git pull
git merge --no-ff master -m "chore: auto-merge master back to develop"
git push