diff --git a/.github/workflows/deploy-single-docker-image.yml b/.github/workflows/deploy-single-docker-image.yml index 6ed8d83..63c778b 100644 --- a/.github/workflows/deploy-single-docker-image.yml +++ b/.github/workflows/deploy-single-docker-image.yml @@ -137,6 +137,7 @@ jobs: id: check run: | echo "Checking for changes in paths ${{ steps.setup-regex.outputs.regex }}.." + EXIT_CODE=0 changed_files="$(git diff --name-only ${{ inputs.github_ref_before }} ${{ inputs.github_ref_after }} | grep -E '${{ steps.setup-regex.outputs.regex }}')" || EXIT_CODE=$? if [ $EXIT_CODE -eq 1 ]; then echo "No changes detected in ${{ steps.setup-regex.outputs.regex }}!🔍" diff --git a/docker/images/build-env-base/Dockerfile b/docker/images/build-env-base/Dockerfile index 7cafd03..7843f67 100644 --- a/docker/images/build-env-base/Dockerfile +++ b/docker/images/build-env-base/Dockerfile @@ -71,4 +71,3 @@ RUN git clone https://github.com/EVerest/everest-cmake.git ${EVEREST_CMAKE_PATH} && cd ${EVEREST_CMAKE_PATH} \ && git checkout ${EVEREST_CMAKE_VERSION} \ && rm -r .git -