-
Notifications
You must be signed in to change notification settings - Fork 1
/
nodePush2Master.js
111 lines (103 loc) · 3.31 KB
/
nodePush2Master.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
const fs = require('fs');
const { exec } = require('child_process');
// Lee el archivo package.json para obtener el número de versión
function getVersionNumber() {
const packageJson = JSON.parse(fs.readFileSync('package.json'));
return packageJson.version;
}
// Función para añadir todos los cambios a la zona de espera
function afegirCanvis(callback) {
const addCommand = 'git add .';
exec(addCommand, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`stderr: ${stderr}`);
return;
}
console.log("Canvis afegits a la zona d'espera.");
callback();
});
}
// Función para fer un commit amb el missatge proporcionat
function ferCommit(commitMessage, callback) {
const commitCommand = `git commit -m "${commitMessage}"`;
exec(commitCommand, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`stderr: ${stderr}`);
return;
}
console.log(`Commit realitzat amb èxit: ${commitMessage}`);
callback();
});
}
// Función para fer push al primer repositori remot
function ferPushOrigin(callback) {
const pushCommand1 = 'git push origin master';
exec(pushCommand1, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`stderr: ${stderr}`);
return;
}
console.log("Push realitzat al repositori 'origin' amb èxit.");
callback();
});
}
// Función para fer push al segon repositori remot
function ferPushOrigin2() {
const pushCommand2 = 'git push -u origin2 master';
exec(pushCommand2, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`stderr: ${stderr}`);
return;
}
console.log("Push realitzat al repositori 'origin2' amb èxit.");
});
}
// Función para hacer una etiqueta (tag) con la versión actual del package.json
function etiquetarVersion(callback) {
const versionNumber = getVersionNumber();
const tagCommand = `git tag -a v${versionNumber} -m "Versió ${versionNumber}"`;
exec(tagCommand, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`stderr: ${stderr}`);
return;
}
console.log(`Etiqueta (tag) creada amb èxit: v${versionNumber}`);
callback();
});
}
// Utilitzar el primer argument de la línia de comandes com a missatge del commit
const commitMessage = process.argv[2];
// Comprovar si s'ha proporcionat un missatge de commit
if (commitMessage) {
afegirCanvis(() => {
ferCommit(commitMessage, () => {
etiquetarVersion(() => {
ferPushOrigin(() => {
ferPushOrigin2();
});
});
});
});
} else {
console.error('Cal proporcionar un missatge de commit com a argument.');
}