Skip to content

Commit f577e4b

Browse files
0xBigBossclaude
andauthored
chore(workflows): rename staging environment to dev (#2010)
Updated build workflows to use 'dev' instead of 'staging' for environment naming: - build-distributor.yml - build-workers.yml - build-shovel.yml This aligns the Docker image tagging with the actual development environment name. Tags will now be 'dev-latest' and 'dev-{sha}' instead of 'staging-latest' and 'staging-{sha}'. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude <[email protected]>
1 parent f206482 commit f577e4b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build-distributor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
inputs:
66
environment:
7-
description: 'Environment name (staging, production)'
7+
description: 'Environment name (dev, production)'
88
required: true
99
type: string
1010
outputs:
@@ -14,13 +14,13 @@ on:
1414
workflow_dispatch:
1515
inputs:
1616
environment:
17-
description: 'Environment name (staging, production)'
17+
description: 'Environment name (dev, production)'
1818
required: true
1919
type: choice
2020
options:
21-
- staging
21+
- dev
2222
- production
23-
default: staging
23+
default: dev
2424

2525
jobs:
2626
build-distributor:

.github/workflows/build-shovel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
inputs:
66
environment:
7-
description: 'Environment name (staging, production)'
7+
description: 'Environment name (dev, production)'
88
required: true
99
type: string
1010
outputs:
@@ -14,13 +14,13 @@ on:
1414
workflow_dispatch:
1515
inputs:
1616
environment:
17-
description: 'Environment name (staging, production)'
17+
description: 'Environment name (dev, production)'
1818
required: true
1919
type: choice
2020
options:
21-
- staging
21+
- dev
2222
- production
23-
default: staging
23+
default: dev
2424

2525
jobs:
2626
build-shovel:

.github/workflows/build-workers.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
inputs:
66
environment:
7-
description: 'Environment name (staging, production)'
7+
description: 'Environment name (dev, production)'
88
required: true
99
type: string
1010
outputs:
@@ -14,13 +14,13 @@ on:
1414
workflow_dispatch:
1515
inputs:
1616
environment:
17-
description: 'Environment name (staging, production)'
17+
description: 'Environment name (dev, production)'
1818
required: true
1919
type: choice
2020
options:
21-
- staging
21+
- dev
2222
- production
23-
default: staging
23+
default: dev
2424

2525
jobs:
2626
build-workers:

0 commit comments

Comments
 (0)