Skip to content

Commit

Permalink
for test 4
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 7eee70e commit 1fdf4d8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/nightly-docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ on:
env:
EXAMPLES: "AgentQnA,AudioQnA"
# EXAMPLES: "AgentQnA,AudioQnA,ChatQnA,CodeGen,CodeTrans,DocIndexRetriever,DocSum,FaqGen,InstructionTuning,MultimodalQnA,ProductivitySuite,RerankFinetuning,SearchQnA,Translation,VideoQnA,VisualQnA"
NODE: gaudi
TAG: latest
PUBLISH_TAGS: latest
NODE: "gaudi"
TAG: "latest"
PUBLISH_TAGS: "latest"

jobs:
get-build-matrix:
Expand All @@ -36,15 +36,15 @@ jobs:
fail-fast: false
uses: ./.github/workflows/_example-workflow.yml
with:
node: env.NODE
node: ${{ env.NODE }}
example: ${{ matrix.example }}
inject_commit: true
secrets: inherit

get-image-list:
uses: ./.github/workflows/_get-image-list.yml
with:
examples: env.EXAMPLES
examples: ${{ env.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 }}:${{ env.TAG }}
image_name: opea/${{ matrix.image }}
publish_tags: env.PUBLISH_TAGS
publish_tags: ${{ env.PUBLISH_TAGS }}

0 comments on commit 1fdf4d8

Please sign in to comment.