Skip to content

Commit

Permalink
test 5
Browse files Browse the repository at this point in the history
Signed-off-by: chensuyue <[email protected]>
  • Loading branch information
chensuyue committed Nov 4, 2024
1 parent 1fdf4d8 commit a14abbe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nightly-docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Create Matrix
id: get-matrix
run: |
examples=($(echo ${{ env.EXAMPLES }} | tr ',' ' '))
examples=($(echo ${EXAMPLES} | tr ',' ' '))
examples_json=$(printf '%s\n' "${examples[@]}" | sort -u | jq -R '.' | jq -sc '.')
echo "examples=$examples_json" >> $GITHUB_OUTPUT
Expand All @@ -36,15 +36,15 @@ jobs:
fail-fast: false
uses: ./.github/workflows/_example-workflow.yml
with:
node: ${{ env.NODE }}
node: ${NODE}
example: ${{ matrix.example }}
inject_commit: true
secrets: inherit

get-image-list:
uses: ./.github/workflows/_get-image-list.yml
with:
examples: ${{ env.EXAMPLES }}
examples: ${EXAMPLES}

publish:
needs: [get-image-list, build]
Expand All @@ -61,6 +61,6 @@ jobs:
- name: Image Publish
uses: opea-project/validation/actions/image-publish@main
with:
local_image_ref: ${OPEA_IMAGE_REPO}opea/${{ matrix.image }}:${{ env.TAG }}
local_image_ref: ${OPEA_IMAGE_REPO}opea/${{ matrix.image }}:${TAG}
image_name: opea/${{ matrix.image }}
publish_tags: ${{ env.PUBLISH_TAGS }}
publish_tags: ${PUBLISH_TAGS}

0 comments on commit a14abbe

Please sign in to comment.