fix: added flush() for proper shutdown #298
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clean up PR Docker images | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [ closed ] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
cleanup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cleanup Docker image with PR branch tag | |
run: | | |
export PR_BRANCH_TAG=$(echo ${GITHUB_HEAD_REF#refs/heads/} | tr '/' '-') | |
if [[ ! $PR_BRANCH_TAG =~ (main|master|release-*) ]]; then | |
echo "PR branch is $PR_BRANCH_TAG, deleting Docker image" | |
curl -s -uucentral:${{ secrets.DOCKER_REGISTRY_PASSWORD }} -X DELETE "https://tip.jfrog.io/artifactory/tip-wlan-cloud-ucentral/owgw/$PR_BRANCH_TAG" | |
else | |
echo "PR branch is $PR_BRANCH_TAG, not deleting Docker image" | |
fi |