Add EU QA Web client information (#5704)
This commit is contained in:
parent
6530680b8a
commit
997c2b1fe7
|
@ -84,6 +84,8 @@ jobs:
|
||||||
npm_command: "build:bit:ee"
|
npm_command: "build:bit:ee"
|
||||||
- name: "cloud-euprd"
|
- name: "cloud-euprd"
|
||||||
npm_command: "build:bit:euprd"
|
npm_command: "build:bit:euprd"
|
||||||
|
- name: "cloud-euqa"
|
||||||
|
npm_command: "build:bit:euqa"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
|
|
|
@ -0,0 +1,60 @@
|
||||||
|
---
|
||||||
|
name: Deploy Web to EU-QA Cloud
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
tag:
|
||||||
|
description: "Branch name to deploy (examples: 'master', 'feature/sm')"
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
default: master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
azure-deploy:
|
||||||
|
name: Deploy to Azure
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
env:
|
||||||
|
_WEB_ARTIFACT: "web-*-cloud-euqa.zip"
|
||||||
|
steps:
|
||||||
|
- name: Login to Azure - EU Subscription
|
||||||
|
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.6
|
||||||
|
with:
|
||||||
|
creds: ${{ secrets.AZURE_KV_EU_QA_SERVICE_PRINCIPAL }}
|
||||||
|
|
||||||
|
- name: Retrieve Storage Account connection string
|
||||||
|
id: retrieve-secrets
|
||||||
|
uses: bitwarden/gh-actions/get-keyvault-secrets@37ffa14164a7308bc273829edfe75c97cd562375
|
||||||
|
with:
|
||||||
|
keyvault: webvaulteu-westeurope-qa
|
||||||
|
secrets: "sa-bitwarden-web-vault-dev-key-temp"
|
||||||
|
|
||||||
|
- name: Download latest cloud asset
|
||||||
|
uses: bitwarden/gh-actions/download-artifacts@37ffa14164a7308bc273829edfe75c97cd562375
|
||||||
|
with:
|
||||||
|
workflow: build-web.yml
|
||||||
|
path: apps/web
|
||||||
|
workflow_conclusion: success
|
||||||
|
branch: ${{ github.event.inputs.tag }}
|
||||||
|
artifacts: ${{ env._WEB_ARTIFACT }}
|
||||||
|
|
||||||
|
- name: Unzip build asset
|
||||||
|
working-directory: apps/web
|
||||||
|
run: unzip ${{ env._WEB_ARTIFACT }}
|
||||||
|
|
||||||
|
- name: Empty container in Storage Account
|
||||||
|
run: |
|
||||||
|
az storage blob delete-batch \
|
||||||
|
--source '$web' \
|
||||||
|
--pattern '*' \
|
||||||
|
--connection-string "${{ steps.retrieve-secrets.outputs.sa-bitwarden-web-vault-dev-key-temp }}"
|
||||||
|
|
||||||
|
- name: Deploy to Azure Storage Account
|
||||||
|
working-directory: apps/web
|
||||||
|
run: |
|
||||||
|
az storage blob upload-batch \
|
||||||
|
--source "./build" \
|
||||||
|
--destination '$web' \
|
||||||
|
--connection-string "${{ steps.retrieve-secrets.outputs.sa-bitwarden-web-vault-dev-key-temp }}" \
|
||||||
|
--overwrite \
|
||||||
|
--no-progress
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"urls": {
|
"urls": {
|
||||||
"icons": "https://icons.bitwarden.net",
|
"icons": "https://icons.bitwarden.eu",
|
||||||
"notifications": "https://notifications.bitwarden.eu",
|
"notifications": "https://notifications.bitwarden.eu",
|
||||||
"scim": "https://scim.bitwarden.eu"
|
"scim": "https://scim.bitwarden.eu"
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"urls": {
|
||||||
|
"icons": "https://icons.euqa.bitwarden.pw",
|
||||||
|
"notifications": "https://notifications.euqa.bitwarden.pw",
|
||||||
|
"scim": "https://scim.euqa.bitwarden.pw"
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"secretsManager": true,
|
||||||
|
"showPasswordless": true
|
||||||
|
}
|
||||||
|
}
|
|
@ -11,6 +11,7 @@
|
||||||
"build:bit:dev:watch": "cross-env ENV=development npm run build:bit:watch",
|
"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:qa": "cross-env NODE_ENV=production ENV=qa npm run build:bit",
|
||||||
"build:bit:euprd": "cross-env NODE_ENV=production ENV=euprd npm run build:bit",
|
"build:bit:euprd": "cross-env NODE_ENV=production ENV=euprd npm run build:bit",
|
||||||
|
"build:bit:euqa": "cross-env NODE_ENV=production ENV=euqa npm run build:bit",
|
||||||
"build:bit:cloud": "cross-env NODE_ENV=production ENV=cloud 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",
|
"build:oss:selfhost:watch": "cross-env ENV=selfhosted npm run build:oss:watch",
|
||||||
"build:bit:selfhost:watch": "cross-env ENV=selfhosted npm run build:bit:watch",
|
"build:bit:selfhost:watch": "cross-env ENV=selfhosted npm run build:bit:watch",
|
||||||
|
|
Loading…
Reference in New Issue