mirror of
https://github.com/r0adkll/sign-android-release
synced 2026-09-26 06:38:37 +00:00
66 lines
2.8 KiB
JavaScript
66 lines
2.8 KiB
JavaScript
"use strict";
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
});
|
|
};
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
result["default"] = mod;
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const exec = __importStar(require("@actions/exec"));
|
|
const core = __importStar(require("@actions/core"));
|
|
const io = __importStar(require("@actions/io"));
|
|
function signApkFile(apkFile, signingKeyFile, alias, keyStorePassword, keyPassword) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
core.debug("Zipaligning APK file");
|
|
// Find zipalign executable
|
|
const zipAlignPath = yield io.which('zipalign', true);
|
|
core.debug(`Found 'zipalign' @ ${zipAlignPath}`);
|
|
// Align the apk file
|
|
const alignedApkFile = apkFile.replace('.apk', '-aligned.apk');
|
|
yield exec.exec(`"${zipAlignPath}"`, [
|
|
'-v', '-p 4',
|
|
apkFile,
|
|
alignedApkFile
|
|
]);
|
|
core.debug("Signing APK file");
|
|
// find apksigner path
|
|
const apkSignerPath = yield io.which('apksigner', true);
|
|
core.debug(`Found 'apksigner' @ ${apkSignerPath}`);
|
|
// apksigner sign --ks my-release-key.jks --out my-app-release.apk my-app-unsigned-aligned.apk
|
|
const signedApkFile = apkFile.replace('.apk', '-signed.apk');
|
|
yield exec.exec(`"${apkSignerPath}"`, [
|
|
'sign',
|
|
'--ks', signingKeyFile,
|
|
'--out', signedApkFile,
|
|
alignedApkFile
|
|
]);
|
|
return signedApkFile;
|
|
});
|
|
}
|
|
exports.signApkFile = signApkFile;
|
|
function signAabFile(aabFile, signingKeyFile, alias, keyStorePassword, keyPassword) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
core.debug("Signing AAB file");
|
|
const jarSignerPath = yield io.which('jarsigner', true);
|
|
core.debug(`Found 'jarsigner' @ ${jarSignerPath}`);
|
|
yield exec.exec(`"${jarSignerPath}"`, [
|
|
'-keystore', signingKeyFile,
|
|
'-storepass', keyStorePassword,
|
|
'-keypass', keyPassword,
|
|
aabFile,
|
|
alias
|
|
]);
|
|
return aabFile;
|
|
});
|
|
}
|
|
exports.signAabFile = signAabFile;
|