Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions app_dart/lib/src/model/ci_yaml/target.dart
Original file line number Diff line number Diff line change
Expand Up @@ -309,11 +309,9 @@ final class Target {
return null;
}

/// Whether this target was marked with `release_build: true` in `.ci.yaml`.
/// Whether this target was marked with `properties: release_build: "true"`.
bool get isReleaseBuild {
final properties = getProperties();
return properties.containsKey('release_build') &&
(properties['release_build'] as bool);
return getProperties()['release_build'] == true;
}

/// Whether this target was marked with `bringup: true` in `.ci.yaml`.
Expand Down