-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed init file location and re-added github secret
- Loading branch information
Daniel M. Low
authored and
Daniel M. Low
committed
Jan 20, 2025
1 parent
af486e2
commit d21ef6b
Showing
4 changed files
with
4 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,4 +49,4 @@ jobs: | |
run: | | ||
~/auto shipit -vv | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_Token }} | ||
GH_TOKEN: ${{ secrets.CT_SECRET }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |