Skip to content

Commit

Permalink
Fix CI for new tagging release
Browse files Browse the repository at this point in the history
  • Loading branch information
rbonghi committed Feb 12, 2025
1 parent c87f7a3 commit b25739d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish Python Package
on:
push:
tags:
- "v*.*.*" # Triggers the workflow on version tags, e.g., v1.0.0, v2.1.3
- "*.*.*" # Trigger when a tag with format X.X.X is pushed

jobs:
publish:
Expand Down
11 changes: 9 additions & 2 deletions src/nanosaur/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,16 @@
__copyright__ = "(c) 2025, Raffaello Bonghi"
# Version package
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#choosing-a-versioning-scheme
__version__ = "0.0.2"
__version__ = "0.1.0"

from .utilities import Params, RobotList, Robot, get_nanosaur_home, get_nanosaur_docker_user # noqa: F401
from .workspace import get_selected_workspace, get_workspaces_path, get_shared_workspace_path, deploy, NANOSAUR_DOCKER_PACKAGE # noqa: F401
from .workspace import (
get_selected_workspace,
get_workspaces_path,
get_shared_workspace_path,
deploy,
NANOSAUR_DISTRO_MAP,
NANOSAUR_CURRENT_DISTRO,
NANOSAUR_DOCKER_PACKAGE) # noqa: F401
from .prompt_colors import TerminalFormatter # noqa: F401
# EOF

0 comments on commit b25739d

Please sign in to comment.