Skip to content

Commit

Permalink
Merge pull request #135 from argonne-lcf/release
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
masalim2 authored Nov 23, 2021
2 parents 64093ba + 7112fa7 commit 931ee3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@master
- name: Generate change log
id: change_log
uses: heinrichreimer/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -27,16 +28,13 @@ jobs:
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
${{ steps.change_log.outputs.changelog }}
draft: false
prerelease: false
prerelease: ${{ contains(github.ref, 'a') || contains(github.ref, 'b') }}
deploy:
needs: release
runs-on: ubuntu-latest
steps:
- name: Exit if not on master branch
if: endsWith(github.ref, 'main') == false
run: exit -1

- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
Expand Down
2 changes: 1 addition & 1 deletion balsam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from balsam.util import config_root_logger

__version__ = "0.7.0.a10"
__version__ = "0.7.0.a11"
config_root_logger()

0 comments on commit 931ee3d

Please sign in to comment.