Skip to content

Commit

Permalink
Merge pull request #1498 from Nordix/tuomo/fix-build-1.5
Browse files Browse the repository at this point in the history
🌱 add build images action to release-1.5
  • Loading branch information
metal3-io-bot authored Mar 4, 2024
2 parents 58a7d2a + 37d25d8 commit 3c2c29e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build-images-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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/cluster-api-provider-metal3'
steps:
- name: build capm3 image
uses: toptal/jenkins-job-trigger-action@137fff703dd260b52b53d3ba1960396415abc568 # 1.0.2
with:
jenkins_url: "https://jenkins.nordix.org/"
jenkins_user: "[email protected]"
jenkins_token: ${{ secrets.JENKINS_TOKEN }}
job_name: "metal3_cluster-api-provider-metal3_container_image_building"
job_params: |
{
"BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}"
}
job_timeout: "1000"

0 comments on commit 3c2c29e

Please sign in to comment.