Skip to content

Commit 9ff9eb4

Browse files
committed
fix param
Signed-off-by: chensuyue <suyue.chen@intel.com>
1 parent 1fe4463 commit 9ff9eb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
get-build-matrix:
1717
runs-on: ubuntu-latest
1818
outputs:
19-
examples: ${{ steps.get-matrix.outputs.examples }}
19+
examples_json: ${{ steps.get-matrix.outputs.examples_json }}
2020
EXAMPLES: ${{ steps.get-matrix.outputs.EXAMPLES }}
2121
TAG: ${{ steps.get-matrix.outputs.TAG }}
2222
PUBLISH_TAGS: ${{ steps.get-matrix.outputs.PUBLISH_TAGS }}
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
examples=($(echo ${EXAMPLES} | tr ',' ' '))
2828
examples_json=$(printf '%s\n' "${examples[@]}" | sort -u | jq -R '.' | jq -sc '.')
29-
echo "examples=$examples_json" >> $GITHUB_OUTPUT
29+
echo "examples_json=$examples_json" >> $GITHUB_OUTPUT
3030
echo "EXAMPLES=$EXAMPLES" >> $GITHUB_OUTPUT
3131
echo "TAG=$TAG" >> $GITHUB_OUTPUT
3232
echo "PUBLISH_TAGS=$PUBLISH_TAGS" >> $GITHUB_OUTPUT
@@ -35,7 +35,7 @@ jobs:
3535
needs: get-build-matrix
3636
strategy:
3737
matrix:
38-
example: ${{ fromJSON(needs.get-build-matrix.outputs.examples) }}
38+
example: ${{ fromJSON(needs.get-build-matrix.outputs.examples_json) }}
3939
fail-fast: false
4040
uses: ./.github/workflows/_example-workflow.yml
4141
with:

0 commit comments

Comments
 (0)