We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dbc80f commit fb1094bCopy full SHA for fb1094b
mono_repo/lib/src/commands/github/github_yaml.dart
@@ -283,13 +283,13 @@ extension on CIJobEntry {
283
// If the task specifies a full action, update the job-specific
284
// properties with the current context.
285
if (action != null) {
286
- var workingDirectory = task.action?.workingDirectory;
+ var workingDirectory = action.workingDirectory;
287
if (workingDirectory != null) {
288
workingDirectory = posix.normalize(
289
posix.join(package, workingDirectory),
290
);
291
}
292
- var ifCondition = task.action?.ifCondition;
+ var ifCondition = action.ifCondition;
293
if (ifCondition != null) {
294
ifCondition += " && steps.$pubStepId.conclusion == 'success'";
295
0 commit comments