Merge pull request #1896 from metal3-io/dependabot/go_modules/release… #386
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-images-action | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-*' | |
tags: | |
- 'v*' | |
permissions: {} | |
jobs: | |
build: | |
name: Build container images | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
if: github.repository == 'metal3-io/baremetal-operator' | |
steps: | |
- name: build bmo image | |
uses: toptal/jenkins-job-trigger-action@137fff703dd260b52b53d3ba1960396415abc568 # 1.0.2 | |
with: | |
jenkins_url: "https://jenkins.nordix.org/" | |
jenkins_user: "metal3.bot@gmail.com" | |
jenkins_token: ${{ secrets.JENKINS_TOKEN }} | |
job_name: "metal3_baremetal-operator_container_image_building" | |
job_params: | | |
{ | |
"BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}" | |
} | |
job_timeout: "1000" | |
- name: build keepalived image | |
uses: toptal/jenkins-job-trigger-action@137fff703dd260b52b53d3ba1960396415abc568 # 1.0.2 | |
with: | |
jenkins_url: "https://jenkins.nordix.org/" | |
jenkins_user: "metal3.bot@gmail.com" | |
jenkins_token: ${{ secrets.JENKINS_TOKEN }} | |
job_name: "metal3_keepalived_container_image_building" | |
job_params: | | |
{ | |
"BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}" | |
} | |
job_timeout: "1000" | |
- name: Slack Notification on Failure | |
if: ${{ failure() }} | |
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 # 2.3.0 | |
env: | |
SLACK_TITLE: 'GitHub Action Failed in ${{ github.repository }}' | |
SLACK_COLOR: '#FF0000' | |
SLACK_MESSAGE: 'The GitHub Action workflow failed for baremetal operator image build.' | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_CHANNEL: metal3-github-actions-notify | |
SLACK_USERNAME: metal3-github-actions-notify |