commit latest build artifacts
This commit is contained in:
parent
ba42ad9139
commit
f26a08096a
2 changed files with 7 additions and 1 deletions
|
@ -16,6 +16,7 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
|
||||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
const util_1 = require("./util");
|
||||||
const fs_1 = require("fs");
|
const fs_1 = require("fs");
|
||||||
const mime_1 = require("mime");
|
const mime_1 = require("mime");
|
||||||
const path_1 = require("path");
|
const path_1 = require("path");
|
||||||
|
@ -98,7 +99,7 @@ exports.release = (config, releaser) => __awaiter(void 0, void 0, void 0, functi
|
||||||
try {
|
try {
|
||||||
const tag_name = tag;
|
const tag_name = tag;
|
||||||
const name = config.input_name || tag;
|
const name = config.input_name || tag;
|
||||||
const body = config.input_body;
|
const body = util_1.releaseBody(config);
|
||||||
const draft = config.input_draft;
|
const draft = config.input_draft;
|
||||||
const prerelease = config.input_prerelease;
|
const prerelease = config.input_prerelease;
|
||||||
console.log(`👩🏭 Creating new GitHub release for tag ${tag_name}...`);
|
console.log(`👩🏭 Creating new GitHub release for tag ${tag_name}...`);
|
||||||
|
|
|
@ -9,6 +9,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const glob = __importStar(require("glob"));
|
const glob = __importStar(require("glob"));
|
||||||
const fs_1 = require("fs");
|
const fs_1 = require("fs");
|
||||||
|
exports.releaseBody = (config) => {
|
||||||
|
return (config.input_body ||
|
||||||
|
(config.input_body_path &&
|
||||||
|
fs_1.readFileSync(config.input_body_path).toString("utf8")));
|
||||||
|
};
|
||||||
exports.parseInputFiles = (files) => {
|
exports.parseInputFiles = (files) => {
|
||||||
return files.split(/\r?\n/).reduce((acc, line) => acc
|
return files.split(/\r?\n/).reduce((acc, line) => acc
|
||||||
.concat(line.split(","))
|
.concat(line.split(","))
|
||||||
|
|
Loading…
Reference in a new issue