Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Make container build only run for upstream #538

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/build-images-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,21 @@ on:

build_ironic:
name: Build Ironic container image
if: github.repository == 'metal3-io/ironic-image'
uses: metal3-io/project-infra/.github/workflows/container-image-build.yml@main
with:
image-name: "ironic"
image-name: 'ironic'
pushImage: true
secrets:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
build_sushy-tools:
name: Build sushy-tools image
if: github.repository == 'metal3-io/ironic-image'
uses: metal3-io/project-infra/.github/workflows/container-image-build.yml@main
with:
image-name: "sushy-tools"
image-name: 'sushy-tools'
dockerfile-directory: resources/sushy-tools
pushImage: true
secrets:
Expand All @@ -34,9 +36,10 @@ on:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
build_vbmc:
name: build vbmc image
if: github.repository == 'metal3-io/ironic-image'
uses: metal3-io/project-infra/.github/workflows/container-image-build.yml@main
with:
image-name: "vbmc"
image-name: 'vbmc'
dockerfile-directory: resources/vbmc
pushImage: true
secrets:
Expand Down