Skip to content

Commit

Permalink
Don't fail if removing base image fails
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Aug 3, 2023
1 parent 23dda61 commit 872ba6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
docker run --rm --entrypoint='' ghcr.io/concrete5-community/docker5:${{ matrix.data.image_tag }} ccm-service start db
- name: Remove base Docker image
if: needs.check_envoronment.outputs.action == 'publish'
run: docker rmi ghcr.io/concrete5-community/docker5:base
run: docker rmi ghcr.io/concrete5-community/docker5:base || true
- name: Login to the Docker container registry
if: needs.check_envoronment.outputs.action == 'publish'
uses: docker/login-action@v2
Expand Down

0 comments on commit 872ba6e

Please sign in to comment.