BRE-1355 - Rename Bitwarden Unified to Bitwarden Lite (#425)

This commit is contained in:
Vince Grassia
2025-11-18 12:23:08 -05:00
committed by GitHub
parent d6223864be
commit 7e8f06fe7b
28 changed files with 33 additions and 32 deletions

4
.github/CODEOWNERS vendored
View File

@@ -14,5 +14,5 @@
**/docker-compose.yml @bitwarden/team-appsec @bitwarden/dept-bre
# Shared Platform and BRE
.github/workflows/build-unified.yml @bitwarden/team-platform-dev @bitwarden/dept-bre
docker-unified/ @bitwarden/team-platform-dev @bitwarden/dept-bre
.github/workflows/build-bitwarden-lite.yml @bitwarden/team-platform-dev @bitwarden/dept-bre
bitwarden-lite/ @bitwarden/team-platform-dev @bitwarden/dept-bre

View File

@@ -8,14 +8,14 @@ body:
Thanks for taking the time to fill out this bug report!
> [!WARNING]
> This repository only tracks installation scripts for our self-host project. For any other Bitwarden Server issues including Bitwarden Unified, please submit your report in [bitwarden/server](https://github.com/bitwarden/server)
> This repository only tracks installation scripts for our self-host project. For any other Bitwarden Server issues including Bitwarden Lite, please submit your report in [bitwarden/server](https://github.com/bitwarden/server)
Please do not submit feature requests. The [Community Forums](https://community.bitwarden.com) has a section for submitting, voting for, and discussing product feature requests.
- type: checkboxes
id: self-host-scripts
attributes:
label: Self-host installation scripts issue
description: "This repository only tracks installation scripts for our self-host project, any other Bitwarden Server issues including Bitwarden Unified should be reported in [bitwarden/server](https://github.com/bitwarden/server)"
description: "This repository only tracks installation scripts for our self-host project, any other Bitwarden Server issues including Bitwarden Lite should be reported in [bitwarden/server](https://github.com/bitwarden/server)"
options:
- label: "I understand this repository only tracks self-host installation scripts and any other issues should be reported in bitwarden/server"
required: true

View File

@@ -1,18 +1,18 @@
name: Build Self-Host Unified
name: Build Bitwarden Lite
on:
push:
paths:
- "docker-unified/**"
- ".github/workflows/build-unified.yml"
- "bitwarden-lite/**"
- ".github/workflows/build-bitwarden-lite.yml"
workflow_dispatch:
inputs:
server_branch:
description: "Server branch name to deploy (examples: 'main', 'rc', 'feature/sm')"
description: "Server branch name (examples: 'main', 'rc', 'feature/sm')"
type: string
default: main
web_branch:
description: "Web client branch name to deploy (examples: 'main', 'rc', 'feature/sm')"
description: "Web client branch name (examples: 'main', 'rc', 'feature/sm')"
type: string
default: main
use_latest_core_version:
@@ -21,8 +21,8 @@ on:
default: false
pull_request:
paths:
- ".github/workflows/build-unified.yml"
- "docker-unified/**"
- ".github/workflows/build-bitwarden-lite.yml"
- "bitwarden-lite/**"
env:
_AZ_REGISTRY: bitwardenprod.azurecr.io
@@ -48,8 +48,9 @@ jobs:
id: server-branch-name
env:
SERVER_BRANCH: ${{ inputs.server_branch }}
USE_LATEST_CORE_VERSION: ${{ inputs.use_latest_core_version }}
run: |
if [[ "${{ inputs.use_latest_core_version }}" == "true" ]]; then
if [[ "$USE_LATEST_CORE_VERSION" == "true" ]]; then
# Extract coreVersion from version.json
CORE_VERSION=$(jq -r '.versions.coreVersion' version.json)
echo "Server version from version.json: $CORE_VERSION"
@@ -138,9 +139,9 @@ jobs:
IS_PUBLISH_BRANCH: ${{ env.is_publish_branch }}
run: |
if [[ ("${IMAGE_TAG}" == "dev" || "${IMAGE_TAG}" == "beta") && "${IS_PUBLISH_BRANCH}" == "true" ]]; then
echo "tags=$_AZ_REGISTRY/self-host:${IMAGE_TAG},ghcr.io/bitwarden/self-host:${IMAGE_TAG}" >> "$GITHUB_OUTPUT"
echo "tags=$_AZ_REGISTRY/lite:${IMAGE_TAG},ghcr.io/bitwarden/lite:${IMAGE_TAG}" >> "$GITHUB_OUTPUT"
else
echo "tags=$_AZ_REGISTRY/self-host:${IMAGE_TAG}" >> "$GITHUB_OUTPUT"
echo "tags=$_AZ_REGISTRY/lite:${IMAGE_TAG}" >> "$GITHUB_OUTPUT"
fi
- name: Get Azure Key Vault secrets
@@ -191,7 +192,7 @@ jobs:
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
with:
context: .
file: docker-unified/Dockerfile
file: bitwarden-lite/Dockerfile
platforms: |
linux/amd64,
linux/arm/v7,

View File

@@ -308,8 +308,8 @@ jobs:
uses: bitwarden/gh-actions/azure-logout@main
release-unified:
name: Release Self-host unified
release-bitwarden-lite:
name: Release Bitwarden Lite
runs-on: ubuntu-24.04
needs:
- setup
@@ -397,7 +397,7 @@ jobs:
- setup
- release
- tag-push-latest-images
- release-unified
- release-bitwarden-lite
permissions:
id-token: write
steps: