Skip to content

Commit

Permalink
.github/workflows/kuiper2_0-build.yml: trigger docker images workflow
Browse files Browse the repository at this point in the history
Add a job that triggers docker image build workflow after a PR is merged to
kuiper2.0 default branch and the job that is building the kuiper2.0 images
has finished.

Signed-off-by: Andreea Andrisan <[email protected]>
  • Loading branch information
AAndrisa committed Jul 2, 2024
1 parent eec124b commit 54c6d6a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/kuiper2_0-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,14 @@ jobs:
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ github.workspace }}/kuiper-volume

Trigger_workflow:
needs: Build
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
- name: Trigger docker build
run: gh workflow run docker-image-build.yml --ref staging/kuiper2.0
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit 54c6d6a

Please sign in to comment.