Merge pull request #45 from gattia/gha_upload_artifact #25
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: | |
- main | |
jobs: | |
tagbump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
- name: Bump version and push tag | |
uses: anothrNick/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: true | |
# versionbump: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Set up Python | |
# uses: actions/setup-python@v2 | |
# with: | |
# python-version: 3.7 | |
# - name: Install dependencies | |
# run: | | |
# python -m pip install --upgrade pip | |
# make dev | |
# make requirements | |
# - name: Install / update package version # | |
# run: | | |
# python setup.py install | |
# - name: Commit changes | |
# uses: EndBug/add-and-commit@v7 | |
# with: | |
# add: '' |