flutter_ci 0.0.2 copy "flutter_ci: ^0.0.2" to clipboard
flutter_ci: ^0.0.2 copied to clipboard

Flutter CLI tool for CI/CD automation including version bump, build generation and artifact storage.

example/example.dart

import 'package:flutter_ci/flutter_ci.dart';

void main() async {
  final buildCommand = BuildCommand();

  // Example of running a build programmatically
  await buildCommand.run(
    shouldBump: true,
    preBuildCmd: 'flutter clean && flutter pub get',
  );

  final versionService = VersionService();
  // Example of bumping version manually
  versionService.bumpBuildNumber();

  Logger.success('Example completed successfully!');
}
2
likes
160
points
165
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Flutter CLI tool for CI/CD automation including version bump, build generation and artifact storage.

Repository (GitHub)
View/report issues

Topics

#cli #flutter #ci #cd #automation

License

MIT (license)

Dependencies

args, path, process_run, yaml, yaml_edit

More

Packages that depend on flutter_ci