Skip to content

Commit

Permalink
revert steps. to needs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehearneRedHat committed Jul 23, 2024
1 parent f426e6d commit 989a2ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
uses: actions/checkout@v4

- name: Run make bundle
run: make bundle IMG=${{ steps.build.outputs.build-image }}
run: make bundle IMG=${{ needs.build.outputs.build-image }}

- name: Install qemu dependency
run: |
Expand All @@ -94,7 +94,7 @@ jobs:
uses: redhat-actions/buildah-build@v2
with:
image: ${{ env.OPERATOR_NAME }}-bundle
tags: ${{ steps.build.outputs.build-tags }}
tags: ${{ needs.build.outputs.build-tags }}
platforms: linux/amd64,linux/arm64
build-args: |
COMMIT=${{ github.sha }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
uses: actions/checkout@v4

- name: Run make catalog-build
run: make catalog-build BUNDLE_IMG=${{ steps.build-bundle.outputs.bundle-image }}
run: make catalog-build BUNDLE_IMG=${{ needs.build-bundle.outputs.bundle-image }}

- name: Install qemu dependency
run: |
Expand All @@ -140,7 +140,7 @@ jobs:
uses: redhat-actions/buildah-build@v2
with:
image: ${{ env.OPERATOR_NAME }}-catalog
tags: ${{ steps.build.outputs.build-tags }}
tags: ${{ needs.build.outputs.build-tags }}
platforms: linux/amd64,linux/arm64
context: ./tmp/catalog
dockerfiles: |
Expand Down

0 comments on commit 989a2ea

Please sign in to comment.