Skip to content

Commit

Permalink
ci: fix buildkite group steps type error
Browse files Browse the repository at this point in the history
  • Loading branch information
nickofthyme committed Dec 2, 2024
1 parent f5fe1c3 commit 737699f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/utils/pipeline/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export type CustomGroupStep = Omit<GroupStep, 'steps'> & {
* TODO: fix this to be accounted for in main logic
*/
ignoreForced?: boolean;
steps: CustomCommandStep[];
steps: [CustomCommandStep, ...CustomCommandStep[]];
};

// Only current supported steps
Expand Down

0 comments on commit 737699f

Please sign in to comment.