diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.yml index d1166c557..01e16b54a 100644 --- a/.github/workflows/docker-images.yml +++ b/.github/workflows/docker-images.yml @@ -28,16 +28,19 @@ jobs: password: ${{ secrets.SECRET_DOCKER_01EDU_ORG }} - name: Build the Sh Docker image + if: always() run: | docker build sh/tests/ --file sh/tests/Dockerfile --tag ghcr.io/01-edu/test-sh:latest docker push ghcr.io/01-edu/test-sh:latest - name: Build the JS Docker image + if: always() run: | docker build js/tests/ --file js/tests/Dockerfile --tag ghcr.io/01-edu/test-js:latest docker push ghcr.io/01-edu/test-js:latest - name: Build the DOM Docker image + if: always() run: | docker build . --file dom/Dockerfile --tag ghcr.io/01-edu/test-js:latest docker push ghcr.io/01-edu/test-js:latest