Skip to content

Commit bce37d2

Browse files
committed
update
1 parent 7b4d578 commit bce37d2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build_docker_images.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ jobs:
4242
CHANGED_FILES: ${{ steps.file_changes.outputs.all }}
4343
run: |
4444
echo "$CHANGED_FILES"
45-
for FILE in $CHANGED_FILES; do
45+
for FILE in $CHANGED_FILES; do
46+
# skip anything that isn't still on disk
47+
if [[ ! -f "$FILE" ]]; then
48+
echo "Skipping removed file $FILE"
49+
continue
50+
fi
4651
if [[ "$FILE" == docker/*Dockerfile ]]; then
4752
DOCKER_PATH="${FILE%/Dockerfile}"
4853
DOCKER_TAG=$(basename "$DOCKER_PATH")

0 commit comments

Comments
 (0)