Browse Source

feat(public repo)makes building step independent from the success or failure or each other

pull/1649/head
Chris 1 year ago committed by Harry
parent
commit
dff9dd77ad
  1. 3
      .github/workflows/docker-images.yml

3
.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

Loading…
Cancel
Save