-
Notifications
You must be signed in to change notification settings - Fork 255
36 lines (34 loc) · 1.22 KB
/
build-images-action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: build-images-action
on:
pull_request
# push:
# branches:
# - 'main'
# - 'release-*'
# tags:
# - 'v*'
jobs:
build_bmo:
name: Build BMO container image
# uses: metal3-io/project-infra/.github/workflows/container-image-build.yml@main
# uses: Nordix/metal3-project-infra/.github/workflows/container-image-build.yml@mquhuy/add-container-image-build-wf-template
uses: "./.github/workflows/container-image-build.yml"
with:
image-name: "baremetal-operator"
pushImage: true
secrets:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
build_keepalived:
name: Build keepalived container image
# uses: metal3-io/project-infra/.github/workflows/container-image-build.yml@main
uses: Nordix/metal3-project-infra/.github/workflows/container-image-build.yml@mquhuy/add-container-image-build-wf-template
with:
image-name: "keepalived"
dockerfile-directory: resources/keepalived-docker
pushImage: true
secrets:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}