Skip to content

Commit 1c312b4

Browse files
committed
separate workflow to more step so that it is easier to inspect
1 parent cc639a7 commit 1c312b4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build_images.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,15 @@ jobs:
3333
- name: Store Docker Images on /mnt/docker
3434
run: |
3535
sudo ./config_docker.py
36-
- name: Build Docker Images
36+
- name: Show Docker Images
3737
run: |
3838
docker images
39+
- name: Build Docker Images
40+
run: |
3941
./build_images.py --branch '${{ github.event.inputs.branch }}' --repo '${{ github.event.inputs.repo }}' --root-image-name '${{ github.event.inputs.root_image_name }}'
42+
- name: Show Building Graph
43+
run: |
4044
cat graph.yaml
45+
- name: Show Docker Images
46+
run: |
4147
docker images
42-

0 commit comments

Comments
 (0)