-
Notifications
You must be signed in to change notification settings - Fork 63
54 lines (46 loc) · 1.6 KB
/
release-web-latest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Manual workflow to tag a web version with :latest
name: Update Web Latest Tag
on:
workflow_dispatch:
jobs:
get-version:
name: Get Web version
runs-on: ubuntu-22.04
outputs:
_RELEASE_VERSION: ${{ steps.get-version.outputs.version }}
steps:
- name: Checkout repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Get version
id: get-version
run: |
VERSION=$(jq -r '.versions.webVersion' < version.json)
echo "version=$VERSION" >> $GITHUB_OUTPUT
tag-web-latest:
name: Tag Web version as latest
runs-on: ubuntu-22.04
needs:
- get-version
env:
_RELEASE_VERSION: ${{ needs.get-version.outputs._RELEASE_VERSION }}
steps:
########## DockerHub ##########
- name: Setup DCT
id: setup-dct
uses: bitwarden/gh-actions/setup-docker-trust@main
with:
azure-creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
azure-keyvault-name: "bitwarden-ci"
- name: Pull versioned image
run: docker pull bitwarden/web:$_RELEASE_VERSION
- name: Tag latest
run: docker tag bitwarden/web:$_RELEASE_VERSION bitwarden/web:latest
- name: Push latest image
env:
DOCKER_CONTENT_TRUST: 1
DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE: ${{ steps.setup-dct.outputs.dct-delegate-repo-passphrase }}
run: docker push bitwarden/web:latest
- name: Log out of Docker and disable Docker Notary
run: |
docker logout
echo "DOCKER_CONTENT_TRUST=0" >> $GITHUB_ENV