Skip to content

Commit

Permalink
fix(ci): fixed needs name in master and release CI.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Dec 18, 2023
1 parent 6a3b623 commit 0a76376
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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


6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down

0 comments on commit 0a76376

Please sign in to comment.