mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
41f3e27ace
* enabling ACR images for feature branches * fixing typo in docker tag name * Adding a workflow that cleans up the docker images from a branch when it gets merged in. * Updating job name * Fixing trigger syntax issue * adding a manual trigger * Removing the copy + paste mistake * Adding non-tty confirmation for the deletion of the image * Un-paralellizing workflow * fixing the yq options * trying a different way to get the var data * trying with quotes * trying it for real * adding in a message and testing deleting a tag that doesn't exist * handling the case where the tag doesn't exist * fixing a typo * logging some vaules to try to get some answers * trying a different way of passing the var into jq * final cleanup and test * fixing linting issues * normalizing the ACR and Dockerhub pushes * removing the manual trigger after done testing * Update .github/workflows/build.yml removing missed an added whitespace Co-authored-by: Micaiah Martin <77340197+mimartin12@users.noreply.github.com> * fixing the EventsProcessor docker repo issue * switching repos for EventsProcessor Co-authored-by: Micaiah Martin <77340197+mimartin12@users.noreply.github.com>
67 lines
2.0 KiB
YAML
67 lines
2.0 KiB
YAML
---
|
|
name: Clean After PR
|
|
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
build-docker:
|
|
name: Remove feature branch docker images
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
|
|
########## ACR ##########
|
|
- name: Login to Azure - QA Subscription
|
|
uses: Azure/login@77f1b2e3fb80c0e8645114159d17008b8a2e475a
|
|
with:
|
|
creds: ${{ secrets.AZURE_QA_KV_CREDENTIALS }}
|
|
|
|
- name: Login to Azure ACR
|
|
run: az acr login -n bitwardenqa
|
|
|
|
########## Remove Docker images ##########
|
|
- name: Remove the docker image from ACR
|
|
env:
|
|
REGISTRY_NAME: bitwardenqa
|
|
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
|
|
SERVICE_NAME=$(echo $SERVICE | awk '{print tolower($0)}')
|
|
IMAGE_TAG=$(echo "${GITHUB_REF:11}" | sed "s#/#-#g") # slash safe branch name
|
|
|
|
echo "[*] Checking if remote exists: $REGISTRY_NAME.azurecr.io/$SERVICE_NAME:$IMAGE_TAG"
|
|
TAG_EXISTS=$(
|
|
az acr repository show-tags --name $REGISTRY_NAME --repository $SERVICE_NAME \
|
|
| jq --arg $TAG "$IMAGE_TAG" -e '. | any(. == "$TAG")'
|
|
)
|
|
|
|
if [[ "$TAG_EXISTS" == "true" ]]; then
|
|
echo "[*] Tag exists. Removing tag"
|
|
az acr repository delete --name $REGISTRY_NAME --image $SERVICE_NAME:$IMAGE_TAG --yes
|
|
else
|
|
echo "[*] Tag does not exist. No action needed"
|
|
fi
|
|
done
|
|
|
|
- name: Log out of Docker
|
|
run: docker logout
|