Skip to content

Commit

Permalink
Merge pull request #54 from AllenNeuralDynamics/main
Browse files Browse the repository at this point in the history
Main
  • Loading branch information
jtyoung84 authored Jul 2, 2024
2 parents fbdfc64 + dd7a488 commit 717d2f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
pkg_name=$(grep -P 'version = \{attr = .*\}' pyproject.toml | grep -oP '\w+.__version__')
init_file="./src/${pkg_name//.__version__}/__init__.py"
pkg_version=$(grep -Po '[0-9]+\.[0-9]+\.[0-9]+' "$init_file")
echo "docker_tag=$pkg_version" >> "$GITHUB_ENV"
echo "tag=$pkg_version" >> "$GITHUB_ENV"
- name: Create git tag
run: |
git tag "v${{ env.docker_tag }}"
git tag "v${{ env.tag }}"
- name: Push git tag
run: git push origin "v${{ env.docker_tag }}"
run: git push origin "v${{ env.tag }}"
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion src/aind_data_access_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Init package"""

__version__ = "0.9.0"
__version__ = "0.10.0"

0 comments on commit 717d2f7

Please sign in to comment.