Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c75f0f2e4 | ||
|
|
b072aaafe1 | ||
|
|
f3ea29dca7 | ||
|
|
889eb279f8 |
517
dist/index.js
vendored
517
dist/index.js
vendored
File diff suppressed because it is too large
Load Diff
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/sourcemap-register.js
vendored
2
dist/sourcemap-register.js
vendored
File diff suppressed because one or more lines are too long
@@ -6,14 +6,14 @@ const fs_1 = require("fs");
|
|||||||
class Artifact {
|
class Artifact {
|
||||||
constructor(path, contentType = "raw") {
|
constructor(path, contentType = "raw") {
|
||||||
this.path = path;
|
this.path = path;
|
||||||
this.name = path_1.basename(path);
|
this.name = (0, path_1.basename)(path);
|
||||||
this.contentType = contentType;
|
this.contentType = contentType;
|
||||||
}
|
}
|
||||||
get contentLength() {
|
get contentLength() {
|
||||||
return fs_1.statSync(this.path).size;
|
return (0, fs_1.statSync)(this.path).size;
|
||||||
}
|
}
|
||||||
readFile() {
|
readFile() {
|
||||||
return fs_1.readFileSync(this.path);
|
return (0, fs_1.readFileSync)(this.path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.Artifact = Artifact;
|
exports.Artifact = Artifact;
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||||
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||||
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||||
|
}
|
||||||
|
Object.defineProperty(o, k2, desc);
|
||||||
}) : (function(o, m, k, k2) {
|
}) : (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
o[k2] = m[k];
|
o[k2] = m[k];
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||||
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||||
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||||
|
}
|
||||||
|
Object.defineProperty(o, k2, desc);
|
||||||
}) : (function(o, m, k, k2) {
|
}) : (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
o[k2] = m[k];
|
o[k2] = m[k];
|
||||||
@@ -28,6 +32,7 @@ const Globber_1 = require("./Globber");
|
|||||||
const Artifact_1 = require("./Artifact");
|
const Artifact_1 = require("./Artifact");
|
||||||
const untildify_1 = __importDefault(require("untildify"));
|
const untildify_1 = __importDefault(require("untildify"));
|
||||||
const ArtifactPathValidator_1 = require("./ArtifactPathValidator");
|
const ArtifactPathValidator_1 = require("./ArtifactPathValidator");
|
||||||
|
const PathNormalizer_1 = require("./PathNormalizer");
|
||||||
class FileArtifactGlobber {
|
class FileArtifactGlobber {
|
||||||
constructor(globber = new Globber_1.FileGlobber()) {
|
constructor(globber = new Globber_1.FileGlobber()) {
|
||||||
this.globber = globber;
|
this.globber = globber;
|
||||||
@@ -36,6 +41,7 @@ class FileArtifactGlobber {
|
|||||||
const split = /[,\n]/;
|
const split = /[,\n]/;
|
||||||
return artifact.split(split)
|
return artifact.split(split)
|
||||||
.map(path => path.trimStart())
|
.map(path => path.trimStart())
|
||||||
|
.map(path => PathNormalizer_1.PathNormalizer.normalizePath(path))
|
||||||
.map(path => FileArtifactGlobber.expandPath(path))
|
.map(path => FileArtifactGlobber.expandPath(path))
|
||||||
.map(pattern => this.globPattern(pattern, errorsFailBuild))
|
.map(pattern => this.globPattern(pattern, errorsFailBuild))
|
||||||
.map((globResult) => FileArtifactGlobber.validatePattern(errorsFailBuild, globResult[1], globResult[0]))
|
.map((globResult) => FileArtifactGlobber.validatePattern(errorsFailBuild, globResult[1], globResult[0]))
|
||||||
@@ -65,7 +71,7 @@ class FileArtifactGlobber {
|
|||||||
throw Error(`Artifact pattern :${pattern} did not match any files`);
|
throw Error(`Artifact pattern :${pattern} did not match any files`);
|
||||||
}
|
}
|
||||||
static expandPath(path) {
|
static expandPath(path) {
|
||||||
return untildify_1.default(path);
|
return (0, untildify_1.default)(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.FileArtifactGlobber = FileArtifactGlobber;
|
exports.FileArtifactGlobber = FileArtifactGlobber;
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||||
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||||
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||||
|
}
|
||||||
|
Object.defineProperty(o, k2, desc);
|
||||||
}) : (function(o, m, k, k2) {
|
}) : (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
o[k2] = m[k];
|
o[k2] = m[k];
|
||||||
@@ -39,7 +43,7 @@ class ArtifactPathValidator {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
verifyNotDirectory(path) {
|
verifyNotDirectory(path) {
|
||||||
const isDir = fs_1.statSync(path).isDirectory();
|
const isDir = (0, fs_1.statSync)(path).isDirectory();
|
||||||
if (isDir) {
|
if (isDir) {
|
||||||
const message = `Artifact is a directory:${path}. Directories can not be uploaded to a release.`;
|
const message = `Artifact is a directory:${path}. Directories can not be uploaded to a release.`;
|
||||||
this.reportError(message);
|
this.reportError(message);
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||||
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||||
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||||
|
}
|
||||||
|
Object.defineProperty(o, k2, desc);
|
||||||
}) : (function(o, m, k, k2) {
|
}) : (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
o[k2] = m[k];
|
o[k2] = m[k];
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||||
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||||
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||||
|
}
|
||||||
|
Object.defineProperty(o, k2, desc);
|
||||||
}) : (function(o, m, k, k2) {
|
}) : (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
o[k2] = m[k];
|
o[k2] = m[k];
|
||||||
@@ -183,7 +187,7 @@ class CoreInputs {
|
|||||||
return core.getInput('omitNameDuringUpdate') == 'true';
|
return core.getInput('omitNameDuringUpdate') == 'true';
|
||||||
}
|
}
|
||||||
stringFromFile(path) {
|
stringFromFile(path) {
|
||||||
return fs_1.readFileSync(path, 'utf-8');
|
return (0, fs_1.readFileSync)(path, 'utf-8');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.CoreInputs = CoreInputs;
|
exports.CoreInputs = CoreInputs;
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||||
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||||
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||||
|
}
|
||||||
|
Object.defineProperty(o, k2, desc);
|
||||||
}) : (function(o, m, k, k2) {
|
}) : (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
o[k2] = m[k];
|
o[k2] = m[k];
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||||
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||||
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||||
|
}
|
||||||
|
Object.defineProperty(o, k2, desc);
|
||||||
}) : (function(o, m, k, k2) {
|
}) : (function(o, m, k, k2) {
|
||||||
if (k2 === undefined) k2 = k;
|
if (k2 === undefined) k2 = k;
|
||||||
o[k2] = m[k];
|
o[k2] = m[k];
|
||||||
|
|||||||
13
lib/PathNormalizer.js
Normal file
13
lib/PathNormalizer.js
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
"use strict";
|
||||||
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
|
};
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
exports.PathNormalizer = void 0;
|
||||||
|
const path_1 = __importDefault(require("path"));
|
||||||
|
class PathNormalizer {
|
||||||
|
static normalizePath(pathString) {
|
||||||
|
return pathString.split(path_1.default.sep).join("/");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exports.PathNormalizer = PathNormalizer;
|
||||||
@@ -3,6 +3,7 @@ import {Globber, FileGlobber} from "./Globber";
|
|||||||
import {Artifact} from "./Artifact";
|
import {Artifact} from "./Artifact";
|
||||||
import untildify from "untildify";
|
import untildify from "untildify";
|
||||||
import {ArtifactPathValidator} from "./ArtifactPathValidator";
|
import {ArtifactPathValidator} from "./ArtifactPathValidator";
|
||||||
|
import {PathNormalizer} from "./PathNormalizer";
|
||||||
|
|
||||||
export interface ArtifactGlobber {
|
export interface ArtifactGlobber {
|
||||||
globArtifactString(artifact: string, contentType: string, errorsFailBuild: boolean): Artifact[]
|
globArtifactString(artifact: string, contentType: string, errorsFailBuild: boolean): Artifact[]
|
||||||
@@ -19,6 +20,7 @@ export class FileArtifactGlobber implements ArtifactGlobber {
|
|||||||
const split = /[,\n]/
|
const split = /[,\n]/
|
||||||
return artifact.split(split)
|
return artifact.split(split)
|
||||||
.map(path => path.trimStart())
|
.map(path => path.trimStart())
|
||||||
|
.map(path => PathNormalizer.normalizePath(path))
|
||||||
.map(path => FileArtifactGlobber.expandPath(path))
|
.map(path => FileArtifactGlobber.expandPath(path))
|
||||||
.map(pattern => this.globPattern(pattern, errorsFailBuild))
|
.map(pattern => this.globPattern(pattern, errorsFailBuild))
|
||||||
.map((globResult) => FileArtifactGlobber.validatePattern(errorsFailBuild, globResult[1], globResult[0]))
|
.map((globResult) => FileArtifactGlobber.validatePattern(errorsFailBuild, globResult[1], globResult[0]))
|
||||||
|
|||||||
7
src/PathNormalizer.ts
Normal file
7
src/PathNormalizer.ts
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import path from "path";
|
||||||
|
|
||||||
|
export class PathNormalizer {
|
||||||
|
static normalizePath(pathString: string): string {
|
||||||
|
return pathString.split(path.sep).join("/")
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user