Skip to content

Commit 38ee172

Browse files
authored
Officially rename CloudFormation stacks (#80)
1 parent d0dfe44 commit 38ee172

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,19 @@ jobs:
114114
# Build and deploy to the development environment whenever there is a push to main or dev
115115
- name: Build & Deploy Development
116116
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'
117-
run: uv run npm run cdk -- deploy titiler-xarray-development --require-approval never
117+
run: uv run npm run cdk -- deploy titiler-multidim-development --require-approval never
118118
env:
119119
TITILER_MULTIDIM_PYTHONWARNINGS: ignore
120120
TITILER_MULTIDIM_DEBUG: True
121121
STACK_STAGE: development
122+
STACK_NAME: titiler-multidim
122123

123124
# Build and deploy to production deployment whenever there a new tag is pushed
124125
- name: Build & Deploy Production
125126
if: startsWith(github.ref, 'refs/tags/v')
126-
run: uv run npm run cdk -- deploy titiler-xarray-production --require-approval never
127+
run: uv run npm run cdk -- deploy titiler-multidim-production --require-approval never
127128
env:
128129
TITILER_MULTIDIM_PYTHONWARNINGS: ignore
129130
TITILER_MULTIDIM_DEBUG: True
130131
STACK_STAGE: production
132+
STACK_NAME: titiler-multidim

0 commit comments

Comments
 (0)