We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd5fc54 commit 7a07ad4Copy full SHA for 7a07ad4
1 file changed
.github/workflows/test-push.yml
@@ -28,7 +28,13 @@ jobs:
28
username: ${{ github.actor }}
29
password: ${{ secrets.GITHUB_TOKEN }}
30
31
- - name: Build and test push
+ - name: Delete existing test images
32
+ run: |
33
+ docker pull ghcr.io/tg9541/${{ matrix.test-image }}:latest 2>/dev/null || true
34
+ docker rmi ghcr.io/tg9541/${{ matrix.test-image }}:latest 2>/dev/null || true
35
+ continue-on-error: true
36
+
37
+ - name: Build and push test image
38
uses: docker/build-push-action@v4
39
with:
40
context: .
0 commit comments