1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-28 04:08:47 +02:00

Add EU Prod environment to Web build (#5620)

This commit is contained in:
Vince Grassia 2023-06-15 12:54:39 -04:00 committed by GitHub
parent 44f74483d9
commit bec51c95f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 27 additions and 16 deletions

View File

@ -80,12 +80,10 @@ jobs:
npm_command: "dist:bit:selfhost"
- name: "cloud-QA"
npm_command: "build:bit:qa"
- name: "cloud-POC2"
npm_command: "build:bit:poc"
- name: "ee"
npm_command: "build:bit:ee"
- name: "cloud-eudevtest"
npm_command: "build:bit:eudevtest"
- name: "cloud-euprd"
npm_command: "build:bit:euprd"
steps:
- name: Checkout repo

13
.github/workflows/deploy-prod-web.yml vendored Normal file
View File

@ -0,0 +1,13 @@
---
name: Deploy Web - EU Prod - STUB
on:
workflow_dispatch:
jobs:
stub-job:
name: Stub Job
runs-on: ubuntu-22.04
steps:
- name: Stub Step
run: exit 0

View File

@ -0,0 +1,11 @@
{
"urls": {
"icons": "https://icons.bitwarden.net",
"notifications": "https://notifications.bitwarden.net",
"scim": "https://scim.bitwarden.net"
},
"flags": {
"secretsManager": true,
"showPasswordless": true
}
}

View File

@ -1,11 +0,0 @@
{
"urls": {
"icons": "https://icons.poc2.bitwarden.pw",
"notifications": "https://notifications.poc2.bitwarden.pw",
"scim": "https://scim.poc2.bitwarden.pw"
},
"flags": {
"secretsManager": true,
"showPasswordless": true
}
}

View File

@ -10,7 +10,7 @@
"build:bit:dev:analyze": "cross-env LOGGING=false webpack -c ../../bitwarden_license/bit-web/webpack.config.js --profile --json > stats.json && npx webpack-bundle-analyzer stats.json build/",
"build:bit:dev:watch": "cross-env ENV=development npm run build:bit:watch",
"build:bit:qa": "cross-env NODE_ENV=production ENV=qa npm run build:bit",
"build:bit:poc": "cross-env NODE_ENV=production ENV=poc npm run build:bit",
"build:bit:euprd": "cross-env NODE_ENV=production ENV=euprd npm run build:bit",
"build:bit:eudevtest": "cross-env NODE_ENV=production ENV=eudevtest npm run build:bit",
"build:bit:cloud": "cross-env NODE_ENV=production ENV=cloud npm run build:bit",
"build:oss:selfhost:watch": "cross-env ENV=selfhosted npm run build:oss:watch",