From 3dff10d3509a068fc8c9b6dba90453912faace4d Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Tue, 18 Nov 2025 13:37:00 -0500 Subject: [PATCH] Rename Unified to Lite (#426) --- .github/workflows/release.yml | 24 ++++++++++++------------ bitwarden-lite/docker-compose.yml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1ff5253..1461147 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -342,14 +342,14 @@ jobs: run: | skopeo --version skopeo login "$_AZ_REGISTRY" -u 00000000-0000-0000-0000-000000000000 -p "$(az acr login --expose-token --name "${_AZ_REGISTRY%.azurecr.io}" | jq -r .accessToken)" - skopeo copy --all "docker://$_AZ_REGISTRY/self-host:beta" "docker://ghcr.io/bitwarden/self-host:$_RELEASE_VERSION" - skopeo copy --all "docker://$_AZ_REGISTRY/self-host:beta" "docker://ghcr.io/bitwarden/self-host:beta" # TODO: Delete after GA - # skopeo copy --all "docker://$_AZ_REGISTRY/self-host:beta" "docker://ghcr.io/bitwarden/self-host:latest" # TODO: uncomment after GA + skopeo copy --all "docker://$_AZ_REGISTRY/lite:beta" "docker://ghcr.io/bitwarden/lite:$_RELEASE_VERSION" + skopeo copy --all "docker://$_AZ_REGISTRY/lite:beta" "docker://ghcr.io/bitwarden/lite:beta" # TODO: Delete after GA + # skopeo copy --all "docker://$_AZ_REGISTRY/lite:beta" "docker://ghcr.io/bitwarden/lite:latest" # TODO: uncomment after GA - name: Sign image with Cosign run: | - cosign sign --yes "ghcr.io/bitwarden/self-host:$_RELEASE_VERSION" - cosign sign --yes "ghcr.io/bitwarden/self-host:latest" + cosign sign --yes "ghcr.io/bitwarden/lite:$_RELEASE_VERSION" + cosign sign --yes "ghcr.io/bitwarden/lite:latest" - name: Log out of skopeo and ghcr.io run: | @@ -363,25 +363,25 @@ jobs: - name: Pull latest project image run: | if [[ "${{ inputs.release_type }}" == "Dry Run" ]]; then - docker pull "$_AZ_REGISTRY/self-host:dev" + docker pull "$_AZ_REGISTRY/lite:dev" else - docker pull "$_AZ_REGISTRY/self-host:beta" + docker pull "$_AZ_REGISTRY/lite:beta" fi - name: Tag version and latest run: | if [[ "${{ inputs.release_type }}" == "Dry Run" ]]; then - docker tag "$_AZ_REGISTRY/self-host:dev" "$_AZ_REGISTRY/self-host:dryrun" + docker tag "$_AZ_REGISTRY/lite:dev" "$_AZ_REGISTRY/lite:dryrun" else - docker tag "$_AZ_REGISTRY/self-host:beta" "$_AZ_REGISTRY/self-host:$_RELEASE_VERSION" - docker tag "$_AZ_REGISTRY/self-host:beta" "$_AZ_REGISTRY/self-host:latest" + docker tag "$_AZ_REGISTRY/lite:beta" "$_AZ_REGISTRY/lite:$_RELEASE_VERSION" + docker tag "$_AZ_REGISTRY/lite:beta" "$_AZ_REGISTRY/lite:latest" fi - name: Push version and latest image if: ${{ inputs.release_type != 'Dry Run' }} run: | - docker push "$_AZ_REGISTRY/self-host:$_RELEASE_VERSION" - docker push "$_AZ_REGISTRY/self-host:latest" + docker push "$_AZ_REGISTRY/lite:$_RELEASE_VERSION" + docker push "$_AZ_REGISTRY/lite:latest" - name: Log out of Docker run: docker logout "$_AZ_REGISTRY" diff --git a/bitwarden-lite/docker-compose.yml b/bitwarden-lite/docker-compose.yml index 35bc157..dff9ffa 100644 --- a/bitwarden-lite/docker-compose.yml +++ b/bitwarden-lite/docker-compose.yml @@ -6,7 +6,7 @@ services: - db env_file: - settings.env - image: ${REGISTRY:-ghcr.io/bitwarden}/self-host:${TAG:-beta} + image: ${REGISTRY:-ghcr.io/bitwarden}/lite:${TAG:-beta} restart: always ports: - "80:8080"