chore: remove dangling container

This commit is contained in:
Radostin Emanuilov 2024-08-28 16:45:57 +01:00
parent 5150f5e507
commit e999475846
No known key found for this signature in database

View File

@ -32,6 +32,10 @@ jobs:
docker: docker:
image: docker:27.0.3-dind image: docker:27.0.3-dind
steps: steps:
- name: Stop the dangling builder container
if: always()
run: docker rm -f $BUILDER_CONTAINER_NAME || true
- name: Setup the build environment - name: Setup the build environment
run: | run: |
export BUILDER_PRIVATE_KEY=$(echo -ne "$BUILDER_PRIVATE_KEY" | awk '{printf "%s\\n", $0}') export BUILDER_PRIVATE_KEY=$(echo -ne "$BUILDER_PRIVATE_KEY" | awk '{printf "%s\\n", $0}')