Skip to content

Port patch 6.4.0 -> 7.0.0 #62

Port patch 6.4.0 -> 7.0.0

Port patch 6.4.0 -> 7.0.0 #62

name: "Pull Request Merge Workflow"
on:
pull_request:
branches:
- "develop"
- "release-*"
types:
- closed
jobs:
delete-docker:
name: Execute delete docker image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '10'
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Delete in Docker Hub
run: |
echo "Deleting docker image ${{ github.head_ref }}"
python3 ./cellbase-app/app/cloud/docker/docker-build.py delete --images base --tag ${{ github.head_ref }}