Skip to content

Commit

Permalink
Working to get array
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwaldp-oci committed Jul 18, 2023
1 parent f3097a2 commit 4e2ebb0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build_base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
inputs:
override-build-matrix:
description: 'Override build matrix'
default: '[]'
type: string
required: false
outputs:
Expand Down Expand Up @@ -79,10 +80,10 @@ jobs:
- name: Check | Override result
id: pm-results
run: |
echo platform-matrix="${{steps.parse-pm.outputs.result}}" >> $GITHUB_OUTPUT
echo platform-matrix=${{steps.parse-pm.outputs.result}} >> $GITHUB_OUTPUT
if [[ "${{inputs.override-build-matrix}}" != "" ]]; then
echo platform-matrix="${{inputs.override-build-matrix}}" >> $GITHUB_OUTPUT
if [[ ${{inputs.override-build-matrix}} != '[]' ]]; then
echo platform-matrix=${{inputs.override-build-matrix}} >> $GITHUB_OUTPUT
fi
Build:
Expand Down

0 comments on commit 4e2ebb0

Please sign in to comment.