diff --git a/.github/workflows/build-images-action.yml b/.github/workflows/build-images-action.yml new file mode 100644 index 0000000000..90c2693c4c --- /dev/null +++ b/.github/workflows/build-images-action.yml @@ -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: "metal3.bot@gmail.com" + 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"