Skip to content

Commit

Permalink
update release workflow to run each container workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
m-goggins committed Jun 20, 2024
1 parent 7803fb1 commit 8a05fd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/createNewRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
uses: actions/checkout@v2

- name: Run container workflow
uses: ./.github/workflows/container-${{ matrix.container }}.yaml
uses: ./.github/actions/run-container-workflow
workflow: ${{ matrix.container }}

tag-release:
name: Update phdi init version number
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/run-container-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ runs:
uses: actions/checkout@v2

- name: Run specified workflow
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run ${{ inputs.workflow }}
gh workflow run .github/workflows/container-${{ inputs.workflow }}.yaml

0 comments on commit 8a05fd8

Please sign in to comment.