2022-01-21 14:42:23 +01:00
|
|
|
---
|
|
|
|
name: Clean After PR
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [closed]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-docker:
|
|
|
|
name: Remove feature branch docker images
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2022-01-24 20:12:37 +01:00
|
|
|
- name: Checkout repo
|
2023-05-03 16:20:12 +02:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2022-01-24 20:12:37 +01:00
|
|
|
|
|
|
|
########## ACR ##########
|
2023-02-16 23:16:32 +01:00
|
|
|
- name: Login to Azure - QA Subscription
|
2023-05-03 16:20:12 +02:00
|
|
|
uses: Azure/login@77f1b2e3fb80c0e8645114159d17008b8a2e475a # v1.3.0
|
2023-02-16 23:16:32 +01:00
|
|
|
with:
|
|
|
|
creds: ${{ secrets.AZURE_QA_KV_CREDENTIALS }}
|
|
|
|
|
|
|
|
- name: Login to Azure ACR
|
|
|
|
run: az acr login -n bitwardenqa
|
2023-02-22 20:48:45 +01:00
|
|
|
|
2023-02-15 11:45:46 +01:00
|
|
|
- name: Login to Azure - PROD Subscription
|
2023-05-03 16:20:12 +02:00
|
|
|
uses: Azure/login@77f1b2e3fb80c0e8645114159d17008b8a2e475a # v1.3.0
|
2022-01-24 20:12:37 +01:00
|
|
|
with:
|
2023-02-15 11:45:46 +01:00
|
|
|
creds: ${{ secrets.AZURE_PROD_KV_CREDENTIALS }}
|
2022-01-24 20:12:37 +01:00
|
|
|
|
|
|
|
- name: Login to Azure ACR
|
2023-02-15 11:45:46 +01:00
|
|
|
run: az acr login -n bitwardenprod
|
2022-01-24 20:12:37 +01:00
|
|
|
|
|
|
|
########## Remove Docker images ##########
|
|
|
|
- name: Remove the docker image from ACR
|
|
|
|
env:
|
2023-02-16 23:16:32 +01:00
|
|
|
REGISTRIES: |
|
|
|
|
registries:
|
|
|
|
- bitwardenprod
|
|
|
|
- bitwardenqa
|
2022-01-24 20:12:37 +01:00
|
|
|
SERVICES: |
|
|
|
|
services:
|
|
|
|
- Admin
|
|
|
|
- Api
|
|
|
|
- Attachments
|
|
|
|
- Events
|
|
|
|
- EventsProcessor
|
|
|
|
- Icons
|
|
|
|
- Identity
|
|
|
|
- K8S-Proxy
|
|
|
|
- MsSql
|
|
|
|
- Nginx
|
|
|
|
- Notifications
|
|
|
|
- Server
|
|
|
|
- Setup
|
|
|
|
- Sso
|
|
|
|
run: |
|
|
|
|
for SERVICE in $(echo "${{ env.SERVICES }}" | yq e ".services[]" - )
|
|
|
|
do
|
2023-02-16 23:16:32 +01:00
|
|
|
for REGISTRY in $( echo "${{ env.REGISTRIES }}" | yq e ".registries[]" - )
|
|
|
|
do
|
|
|
|
SERVICE_NAME=$(echo $SERVICE | awk '{print tolower($0)}')
|
|
|
|
IMAGE_TAG=$(echo "${GITHUB_REF:11}" | sed "s#/#-#g") # slash safe branch name
|
2022-01-24 20:12:37 +01:00
|
|
|
|
2023-02-16 23:16:32 +01:00
|
|
|
echo "[*] Checking if remote exists: $REGISTRY.azurecr.io/$SERVICE_NAME:$IMAGE_TAG"
|
|
|
|
TAG_EXISTS=$(
|
|
|
|
az acr repository show-tags --name $REGISTRY --repository $SERVICE_NAME \
|
|
|
|
| jq --arg $TAG "$IMAGE_TAG" -e '. | any(. == "$TAG")'
|
|
|
|
)
|
2022-01-24 20:12:37 +01:00
|
|
|
|
2023-02-16 23:16:32 +01:00
|
|
|
if [[ "$TAG_EXISTS" == "true" ]]; then
|
|
|
|
echo "[*] Tag exists. Removing tag"
|
|
|
|
az acr repository delete --name $REGISTRY --image $SERVICE_NAME:$IMAGE_TAG --yes
|
|
|
|
else
|
|
|
|
echo "[*] Tag does not exist. No action needed"
|
|
|
|
fi
|
|
|
|
done
|
2022-01-24 20:12:37 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
- name: Log out of Docker
|
|
|
|
run: docker logout
|