Skip to content

Commit b80d220

Browse files
committed
chore: changes to cleanup-storage wf
1 parent ac42834 commit b80d220

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/code-deploy-cleanup-storage.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ on:
1212
required: true
1313
type: choice
1414
options:
15+
- azure-develop
1516
- azure-development
17+
- azure-pro
1618
- azure-production
17-
default: "azure-development"
19+
default: "azure-pro"
1820

1921
permissions:
2022
id-token: write
@@ -24,7 +26,7 @@ jobs:
2426
build:
2527
name: Build Cleanup Storage Image
2628
runs-on: ubuntu-24.04
27-
environment: ${{ github.event.inputs.ENVIRONMENT && github.event.inputs.ENVIRONMENT || 'azure-production' }}
29+
environment: ${{ github.event.inputs.ENVIRONMENT && github.event.inputs.ENVIRONMENT || 'azure-develop' }}
2830
env:
2931
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
3032
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
@@ -43,7 +45,7 @@ jobs:
4345
steps:
4446
- name: Get input parameters
4547
run: |
46-
ENVIRONMENT=${{ github.event.inputs.ENVIRONMENT && github.event.inputs.ENVIRONMENT || 'azure-production' }}
48+
ENVIRONMENT=${{ github.event.inputs.ENVIRONMENT && github.event.inputs.ENVIRONMENT || 'azure-develop' }}
4749
echo "ENVIRONMENT=${ENVIRONMENT}" >> "$GITHUB_ENV"
4850
BASELINE_BRANCH=${{ github.event.inputs.BASELINE || 'main' }}
4951
echo "BASELINE_BRANCH=${BASELINE_BRANCH#refs/heads/}" >> "$GITHUB_ENV"

cleanup-storage/src/whitelist.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
"collection-design-tes",
44
"inspiracion-2025",
55
"showcase-presentation",
6-
"templates-manrique",
76
"testjpm"
87
]

code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"cleanup": "rm package-lock.json && npkill -D -y",
1515
"copy:assets": "mkdir -p ./public && cp -r node_modules/@imgly/background-removal-node/dist/. public",
1616
"dev": "nodemon --exec \"tsx --env-file=.env src/server.ts\"",
17-
"dev:https": "cross-env HTTPS_ENABLED=true nodemon --exec \"tsx --env-file=.env.https src/server.ts\"",
17+
"dev:https": "cross-env HTTPS_ENABLED=true nodemon --exec \"tsx --env-file=.env src/server.ts\"",
1818
"image:base64": "tsx src/utils/image-to-base64.ts",
1919
"docker:build": "docker build -t weavejs-showcase-backend .",
2020
"format": "prettier --write ./src",

0 commit comments

Comments
 (0)