Skip to content

Commit

Permalink
Add github action to trigger container image build
Browse files Browse the repository at this point in the history
Signed-off-by: Huy Mai <[email protected]>
  • Loading branch information
mquhuy committed Nov 22, 2023
1 parent b62895d commit 99bb34f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-images-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: build-images-action
on:
push:
branches:
- main
- 'release-*'
permissions: {}
jobs:
build:
name: Build container images
runs-on: ubuntu-latest
permissions:
content: read
steps:
- name: build bmo 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"

0 comments on commit 99bb34f

Please sign in to comment.