Update gitattributes and remove lib files
This commit is contained in:
		
							
								
								
									
										4
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
								
							| @ -1,2 +1,2 @@ | ||||
| lib/*.js    -diff -merge | ||||
| lib/*.js    linguist-generated=true | ||||
| dist/index.js    -diff -merge | ||||
| dist/index.js    linguist-generated=true | ||||
|  | ||||
							
								
								
									
										
											BIN
										
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										62
									
								
								lib/auth.js
									
									
									
									
									
								
							
							
						
						
									
										62
									
								
								lib/auth.js
									
									
									
									
									
								
							| @ -1,62 +0,0 @@ | ||||
| "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 fs = __importStar(require("fs")); | ||||
| const os = __importStar(require("os")); | ||||
| const path = __importStar(require("path")); | ||||
| const core = __importStar(require("@actions/core")); | ||||
| const io = __importStar(require("@actions/io")); | ||||
| exports.M2_DIR = '.m2'; | ||||
| exports.SETTINGS_FILE = 'settings.xml'; | ||||
| function configAuthentication(id, username, password) { | ||||
|     return __awaiter(this, void 0, void 0, function* () { | ||||
|         if (id && username && password) { | ||||
|             console.log(`creating ${exports.SETTINGS_FILE} with server-id: ${id}, username: ${username}, and a password`); | ||||
|             const directory = path.join(os.homedir(), exports.M2_DIR); | ||||
|             yield io.mkdirP(directory); | ||||
|             core.debug(`created directory ${directory}`); | ||||
|             yield write(directory, generate(id, username, password)); | ||||
|         } | ||||
|         else { | ||||
|             core.debug(`no ${exports.SETTINGS_FILE} without server-id: ${id}, username: ${username}, and a password`); | ||||
|         } | ||||
|     }); | ||||
| } | ||||
| exports.configAuthentication = configAuthentication; | ||||
| // only exported for testing purposes | ||||
| function generate(id, username, password) { | ||||
|     return ` | ||||
|   <settings> | ||||
|       <servers> | ||||
|         <server> | ||||
|           <id>${id}</id> | ||||
|           <username>${username}</username> | ||||
|           <password>${password}</password> | ||||
|         </server> | ||||
|       </servers> | ||||
|   </settings> | ||||
|   `; | ||||
| } | ||||
| exports.generate = generate; | ||||
| function write(directory, settings) { | ||||
|     return __awaiter(this, void 0, void 0, function* () { | ||||
|         const options = { encoding: 'utf-8' }; | ||||
|         const location = path.join(directory, exports.SETTINGS_FILE); | ||||
|         console.log(`writing ${location}`); | ||||
|         return fs.writeFileSync(location, settings, options); | ||||
|     }); | ||||
| } | ||||
| @ -1,46 +0,0 @@ | ||||
| "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 core = __importStar(require("@actions/core")); | ||||
| const installer = __importStar(require("./installer")); | ||||
| const auth = __importStar(require("./auth")); | ||||
| const path = __importStar(require("path")); | ||||
| function run() { | ||||
|     return __awaiter(this, void 0, void 0, function* () { | ||||
|         try { | ||||
|             let version = core.getInput('version'); | ||||
|             if (!version) { | ||||
|                 version = core.getInput('java-version', { required: true }); | ||||
|             } | ||||
|             const arch = core.getInput('architecture', { required: true }); | ||||
|             const jdkFile = core.getInput('jdkFile', { required: false }) || ''; | ||||
|             yield installer.getJava(version, arch, jdkFile); | ||||
|             const matchersPath = path.join(__dirname, '..', '.github'); | ||||
|             console.log(`##[add-matcher]${path.join(matchersPath, 'java.json')}`); | ||||
|             const id = core.getInput('server-id', { required: false }); | ||||
|             const username = core.getInput('username', { required: false }); | ||||
|             const password = core.getInput('password', { required: false }); | ||||
|             if (id && username && password) { | ||||
|                 yield auth.configAuthentication(id, username, password); | ||||
|             } | ||||
|         } | ||||
|         catch (error) { | ||||
|             core.setFailed(error.message); | ||||
|         } | ||||
|     }); | ||||
| } | ||||
| run(); | ||||
		Reference in New Issue
	
	Block a user
	 Bryan Clark
					Bryan Clark