Skip to content

Commit

Permalink
fixed init file location and re-added github secret
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel M. Low authored and Daniel M. Low committed Jan 20, 2025
1 parent af486e2 commit d21ef6b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
git config user.name "danielmlow"
git config user.email "[email protected]"
git commit -am "Bump version to $latest_tag"
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/danielmlow/construct-tracker.git main
git push https://${{ secrets.CT_SECRET }}@github.com/danielmlow/construct-tracker.git main
git push origin main
- name: Build package
run: poetry build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
run: |
~/auto shipit -vv
env:
GH_TOKEN: ${{ secrets.GH_Token }}
GH_TOKEN: ${{ secrets.CT_SECRET }}
6 changes: 1 addition & 5 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
"""load_data is accessible as from construct_tracker import load_data"""

from construct_tracker.data.datasets.load_datasets import load_data

__all__ = ["load_data"]
"""construct tracker"""
2 changes: 1 addition & 1 deletion src/__init__.py → src/construct_tracker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""load_data is accessible as from construct_tracker import load_data"""

from construct_tracker.data.datasets.load_datasets import load_data
from .data.datasets.load_datasets import load_data

__all__ = ["load_data"]

0 comments on commit d21ef6b

Please sign in to comment.