Skip to content

Commit 16577c1

Browse files
committed
Fix
Signed-off-by: ZePan110 <ze.pan@intel.com>
1 parent 1b3291a commit 16577c1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/nightly-docker-build-publish.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,20 @@ jobs:
2727
run: |
2828
examples=($(echo ${EXAMPLES} | tr ',' ' '))
2929
examples_json=$(printf '%s\n' "${examples[@]}" | sort -u | jq -R '.' | jq -sc '.')
30+
echo "$examples_json"
3031
echo "examples_json=$examples_json" >> $GITHUB_OUTPUT
3132
echo "EXAMPLES=$EXAMPLES" >> $GITHUB_OUTPUT
3233
echo "TAG=$TAG" >> $GITHUB_OUTPUT
3334
echo "PUBLISH_TAGS=$PUBLISH_TAGS" >> $GITHUB_OUTPUT
3435
36+
check:
37+
runs-on: ubuntu-latest
38+
steps:
39+
- name: Check
40+
run: |
41+
echo "EXAMPLES: ${{ env.EXAMPLES }}"
42+
echo "examples_json: ${{ env.examples_json }}"
43+
3544
build-and-test:
3645
needs: get-build-matrix
3746
if: ${{ fromJSON(needs.get-build-matrix.outputs.examples_json).length != 0 }}

0 commit comments

Comments
 (0)