Skip to content

Commit

Permalink
Merge pull request #259 from signalwire/gha
Browse files Browse the repository at this point in the history
Make META_REPO_BRANCH optional in `cicd-docker-build-and-distribute`
  • Loading branch information
andywolk authored Apr 11, 2024
2 parents 41dfbdd + 42f2be9 commit eac7224
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cicd-docker-build-and-distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ on:
default: ''
description: Target meta repo to sync metadata changes
META_REPO_BRANCH:
required: true
required: false
type: string
default: ''
description: Target meta repo branch name
Expand Down Expand Up @@ -177,7 +177,8 @@ jobs:
if: >-
${{
inputs.UPLOAD_BUILD_ARTIFACTS == 'true' &&
inputs.META_REPO != ''
inputs.META_REPO != '' &&
inputs.META_REPO_BRANCH != ''
}}
needs:
- build-and-distribute
Expand Down

0 comments on commit eac7224

Please sign in to comment.