Skip to content

Commit

Permalink
disable bump for post1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmcorvidae committed Apr 8, 2024
1 parent 26f024d commit 2d4be34
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Bump version
run: >-
bin/bump_version.py
- name: Commit updated version.py
id: commit_updated
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git add setup.py
git commit -m "bump version" && git push || echo "No changes to commit"
git log -n 1 --pretty=format:"%H" | tail -n 1 | awk '{print "::set-output name=sha::"$0}'
#- name: Bump version
# run: >-
# bin/bump_version.py

#- name: Commit updated version.py
# id: commit_updated
# run: |
# git config --global user.name 'github-actions'
# git config --global user.email '[email protected]'
# git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
# git add setup.py
# git commit -m "bump version" && git push || echo "No changes to commit"
# git log -n 1 --pretty=format:"%H" | tail -n 1 | awk '{print "::set-output name=sha::"$0}'

- name: Get version
id: get_version
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# This call to setup() does all the work
setup(
name="meshtastic",
version="2.3.4",
version="2.3.4.post1",
description="Python API & client shell for talking to Meshtastic devices",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 2d4be34

Please sign in to comment.