We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b4d578 commit bce37d2Copy full SHA for bce37d2
.github/workflows/build_docker_images.yml
@@ -42,7 +42,12 @@ jobs:
42
CHANGED_FILES: ${{ steps.file_changes.outputs.all }}
43
run: |
44
echo "$CHANGED_FILES"
45
- for FILE in $CHANGED_FILES; do
+ 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
51
if [[ "$FILE" == docker/*Dockerfile ]]; then
52
DOCKER_PATH="${FILE%/Dockerfile}"
53
DOCKER_TAG=$(basename "$DOCKER_PATH")
0 commit comments