Skip to content

Commit

Permalink
E2E: action doesn't fail when the container cleanup step fails
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardsn committed Jan 9, 2025
1 parent 14aa419 commit 071058f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
Expand Down Expand Up @@ -81,6 +81,7 @@ jobs:
- name: package cleanup
uses: dataaxiom/ghcr-cleanup-action@v1
continue-on-error: true # action doesn't fail when this step fails
if: ${{ github.actor != 'dependabot' }}
with:
owner: nuts-foundation
Expand All @@ -91,6 +92,7 @@ jobs:

- name: package cleanup dependabot
uses: dataaxiom/ghcr-cleanup-action@v1
continue-on-error: true # action doesn't fail when this step fails
if: ${{ github.actor == 'dependabot' }}
with:
owner: nuts-foundation
Expand Down

0 comments on commit 071058f

Please sign in to comment.