Corrected pr container deletion on when pr is closed #4
Workflow file for this run
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: Destroy staging image | |
# author: "Guillem Gari <[email protected]>" | |
# description: | | |
# This workflow is triggered when a pull request to ros2* | |
# branches is closed or manually dispatched. It logs into a | |
# private Docker registry, sets the image version, configures Docker | |
# files, and deletes the staging image if it exists. | |
# Key features: | |
# - Runs on self-hosted Kubernetes runners | |
# - Authenticates with a private Docker registry | |
# - Dynamically sets image version based on GitHub context | |
# - Configures Docker files using version information | |
# - Deletes the staging Docker image if it exists | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- ros2* | |
workflow_dispatch: | |
jobs: | |
delete-image: | |
name: Delete image | |
runs-on: | |
- self-hosted | |
- internal-robotnik | |
- linux | |
- kubernetes | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to Robotnik Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: registry.robotnik.ws | |
username: ${{ secrets.REGISTRY_USER }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
- uses: ./.github/actions/set-version | |
id: set_version | |
with: | |
github_ref: refs/pull/${{ github.event.pull_request.number }}/merge | |
github_event_name: ${{ github.event_name }} | |
github_head_ref: ${{ github.head_ref }} | |
github_base_ref: ${{ github.base_ref }} | |
github_sha: ${{ github.sha }} | |
- name: Configure docker files | |
run: | | |
yq e '.images.version = "${{ steps.set_version.outputs.version }}"' -i setup-container.yaml | |
setup-container/scripts/setup.sh | |
- name: Delete image | |
run: | | |
cd container/cd | |
IMAGE=$(yq eval '.services.container.image' compose.yaml) | |
if regctl image inspect $IMAGE &> /dev/null; then | |
echo "Image $IMAGE exists. Attempting to delete..." | |
if regctl tag delete $IMAGE; then | |
echo "Successfully deleted image $IMAGE" | |
else | |
echo "Failed to delete image $IMAGE" | |
exit 1 | |
fi | |
else | |
echo "Image $IMAGE does not exist. No action needed." | |
fi |