mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00

* feat: add build dart script for windows * feat: add android build support * feat: add linux build support * feat: add macos build support * feat: add ios build support * feat: add deps install command and workflow file * cd: what? * cd: what? * cd: what? * cd: update workflow inputs * cd: replace release binary * cd: run flutter pub get * cd: use dpkg zstd instead of xz, windows disable innoInstall, fix channel enum.name and reset pubspec after changing build no for nightly * cd: fix tar copy path * cd: fix copy linux command * cd: fix windows inno depend and fix android aab path * cd: idk * cd: linux why??? * cd: windows choco copy failed * cd: use dart tar archive for creating tar file * cd: fix linux file copy error * cd: use tar command directly * feat: add linux_arm platform * cd: add linux_arm platform * cd: don't know what? * feat: notification about nightly channel update * chore: fix some errors parsing nightly version info
43 lines
911 B
Dart
43 lines
911 B
Dart
import 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import 'package:args/command_runner.dart';
|
|
import 'package:path/path.dart';
|
|
|
|
import 'common.dart';
|
|
|
|
class MacosBuildCommand extends Command with BuildCommandCommonSteps {
|
|
@override
|
|
String get description => "Macos Build command";
|
|
|
|
@override
|
|
String get name => "macos";
|
|
|
|
@override
|
|
FutureOr? run() async {
|
|
await bootstrap();
|
|
|
|
await shell.run(
|
|
"""
|
|
flutter build macos
|
|
appdmg appdmg.json ${join(cwd.path, "build", "Spotube-macos-universal.dmg")}
|
|
flutter_distributor package --platform=macos --targets pkg --skip-clean
|
|
""",
|
|
);
|
|
|
|
final ogPkg = File(
|
|
join(
|
|
cwd.path,
|
|
"dist",
|
|
pubspec.version.toString(),
|
|
"spotube-${pubspec.version}-macos.pkg",
|
|
),
|
|
);
|
|
|
|
await ogPkg.copy(
|
|
join(cwd.path, "build", "Spotube-macos-universal.pkg"),
|
|
);
|
|
await ogPkg.delete();
|
|
}
|
|
}
|