Skip to content

Commit

Permalink
Merge pull request #445 from Nordix/tuomo/format-build-image-consiste…
Browse files Browse the repository at this point in the history
…nt-1.6

🌱 fix build image action for release-1.6
  • Loading branch information
metal3-io-bot authored Mar 4, 2024
2 parents c90e3e7 + 0c10fe8 commit 4a42aa0
Showing 1 changed file with 22 additions and 16 deletions.
38 changes: 22 additions & 16 deletions .github/workflows/build-images-action.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
name: build-images-action

on:
push:
branches:
- 'main'
- 'release-*'
- 'main'
- 'release-*'
tags:
- 'v*'

permissions: {}

jobs:
build:
name: Build container images
runs-on: ubuntu-latest
if: github.repository == 'metal3-io/ip-address-manager'

permissions:
contents: read

if: github.repository == 'metal3-io/ip-address-manager'
steps:
- name: build ipam 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_ip-address-manager_container_image_building"
job_params: |
{
"BUILD_CONTAINER_IMAGE_NAME": "ip-address-manager",
"BUILD_CONTAINER_IMAGE_BRANCH": "${{ github.ref }}"
}
job_timeout: "1000"
- name: build ipam 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_ip-address-manager_container_image_building"
job_params: |
{
"BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}"
}
job_timeout: "1000"

0 comments on commit 4a42aa0

Please sign in to comment.