From 0a763761edc6b7577a6fdc18a05caa9312d2f26f Mon Sep 17 00:00:00 2001 From: Federico Di Pierro <nierro92@gmail.com> Date: Mon, 18 Dec 2023 14:00:00 +0100 Subject: [PATCH] fix(ci): fixed needs name in master and release CI. Signed-off-by: Federico Di Pierro <nierro92@gmail.com> --- .github/workflows/master.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index ae36274c..44dd8b92 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -22,14 +22,14 @@ jobs: matrix: arch: [amd64, arm64] uses: ./.github/workflows/reusable_build_push_images.yml - needs: build-test + needs: build-test-master with: arch: ${{ matrix.arch }} secrets: inherit images-master: uses: ./.github/workflows/reusable_manifest_images.yml - needs: push-images + needs: push-images-master secrets: inherit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 261e5fd6..110c6297 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: matrix: arch: [amd64, arm64] uses: ./.github/workflows/reusable_build_push_images.yml - needs: build-test + needs: build-test-release with: arch: ${{ matrix.arch }} tag: ${{ github.ref_name }} @@ -32,14 +32,14 @@ jobs: images-release: uses: ./.github/workflows/reusable_manifest_images.yml - needs: push-images + needs: push-images-release with: tag: ${{ github.ref_name }} is_latest: true secrets: inherit release: - needs: images + needs: images-release runs-on: ubuntu-latest steps: - name: Checkout