Skip to content

Commit a356daf

Browse files
committed
moved to python file naming convention
1 parent c8d7967 commit a356daf

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/release-py.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
- name: Get Keys
8282
run: |
83-
uv run python tools/getKeys.py --vault build-pipeline-kv
83+
uv run python tools/get_keys.py --vault build-pipeline-kv
8484
8585
- name: Run Tests
8686
run: |

tools/getKeys.py renamed to tools/get_keys.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def colored(text: str, color: str) -> str:
3535

3636
# Get script directory and config
3737
SCRIPT_DIR = Path(__file__).parent
38-
CONFIG_PATH = SCRIPT_DIR / "getKeys.config.json"
38+
CONFIG_PATH = SCRIPT_DIR / "get_keys.config.json"
3939

4040
# Load configuration
4141
with open(CONFIG_PATH, "r") as f:
@@ -656,7 +656,7 @@ def print_help():
656656
"""Print help message."""
657657
print(
658658
"""
659-
Usage: getKeys.py [command] [options]
659+
Usage: get_keys.py [command] [options]
660660
661661
Commands:
662662
pull Pull secrets from Azure Key Vault to .env file (default)
@@ -668,10 +668,10 @@ def print_help():
668668
--private VAULT_NAME Specify private vault name
669669
670670
Examples:
671-
python getKeys.py # Pull secrets (default)
672-
python getKeys.py pull # Pull secrets
673-
python getKeys.py push # Push secrets
674-
python getKeys.py pull --vault my-vault # Pull from specific vault
671+
python get_keys.py # Pull secrets (default)
672+
python get_keys.py pull # Pull secrets
673+
python get_keys.py push # Push secrets
674+
python get_keys.py pull --vault my-vault # Pull from specific vault
675675
"""
676676
)
677677

0 commit comments

Comments
 (0)