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 a1ce459 commit 23e2794Copy full SHA for 23e2794
.github/workflows/build_docker_images.yml
@@ -41,6 +41,12 @@ jobs:
41
run: |
42
CHANGED_FILES="${{ steps.file_changes.outputs.all }}"
43
for FILE in $CHANGED_FILES; do
44
+ # skip anything that isn’t still on disk
45
+ if [[ ! -f "$FILE" ]]; then
46
+ echo "Skipping removed file $FILE"
47
+ continue
48
+ fi
49
+
50
if [[ "$FILE" == docker/*Dockerfile ]]; then
51
DOCKER_PATH="${FILE%/Dockerfile}"
52
DOCKER_TAG=$(basename "$DOCKER_PATH")
0 commit comments