Modify the corresponding format according to the backend new structur… #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Test | ||
name: Build latest images on push event | ||
on: | ||
push: | ||
branches: [ 'main' ] | ||
paths: | ||
- "**/docker/*.py" | ||
- "**/docker/Dockerfile" | ||
- "**/docker/ui/**" | ||
workflow_dispatch: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }}-on-push | ||
cancel-in-progress: true | ||
jobs: | ||
job1: | ||
uses: ./.github/workflows/reuse-get-test-matrix.yml | ||
mega-image-build: | ||
needs: job1 | ||
strategy: | ||
matrix: ${{ fromJSON(needs.job1.outputs.run_matrix) }} | ||
uses: ./.github/workflows/reuse-image-build.yml | ||
Check failure on line 27 in .github/workflows/image-build-on-push.yml GitHub Actions / Build latest images on push eventInvalid workflow file
|
||
with: | ||
image-tag: latest | ||
mega-service: "${{ matrix.example }}" |