Skip to content

Commit

Permalink
come on
Browse files Browse the repository at this point in the history
  • Loading branch information
RichieHakim committed Sep 30, 2023
1 parent 48cd111 commit 8a1f4d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,18 @@ jobs:
inputs: >-
./dist/*.tar.gz
./dist/*.whl
- name: List files in workspace
run: >-
ls ${{ github.workspace }}
- name: List files in upper directory
run: >-
ls ${{ github.workspace }}/..
- name: List files in dist
run: >-
ls ${{ github.workspace }}/dist
- name: Store the version number
run: |
version=$(grep '__version__' ${{ github.workspace }}/roicat/__init__.py | awk -F = '{print $2}' | tr -d ' ' | tr -d \"\')
version=$(grep '__version__' ${{ github.workspace }}/../roicat/__init__.py | awk -F = '{print $2}' | tr -d ' ' | tr -d \"\')
echo "VERSION=$version" >> $GITHUB_ENV
- name: Check version number
run: echo "Version is $VERSION"
Expand Down
2 changes: 1 addition & 1 deletion roicat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
for pkg in __all__:
exec('from . import ' + pkg)

__version__ = '1.1.19'
__version__ = '1.1.20'

0 comments on commit 8a1f4d3

Please sign in to comment.