Skip to content

Commit 27b4439

Browse files
- Docker build elide capability.
1 parent fb504c9 commit 27b4439

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,6 +1115,9 @@ jobs:
11151115
run: |
11161116
BUILD_IMAGE_REQUIRED="true"
11171117
PUSH_IMAGE_REQUIRED="false"
1118+
if [ "$( grep '^build-elide.*' <<< '${{ github.ref_name }}' )" = "" ]; then
1119+
BUILD_IMAGE_REQUIRED="false"
1120+
fi
11181121
# shellcheck disable=SC2235
11191122
if ( \
11201123
[ "${{ github.repository }}" = "stackql/stackql" ] \
@@ -1354,6 +1357,9 @@ jobs:
13541357
run: |
13551358
BUILD_IMAGE_REQUIRED="true"
13561359
PUSH_IMAGE_REQUIRED="false"
1360+
if [ "$( grep '^build-elide.*' <<< '${{ github.ref_name }}' )" = "" ]; then
1361+
BUILD_IMAGE_REQUIRED="false"
1362+
fi
13571363
# shellcheck disable=SC2235
13581364
if ( \
13591365
[ "${{ github.repository }}" = "stackql/stackql" ] \

0 commit comments

Comments
 (0)