carlin 1.19.1 → 1.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,7 +17,7 @@ const getPrCommands = ({ branch }) => [
|
|
|
17
17
|
`git pull origin ${branch}`,
|
|
18
18
|
'git rev-parse HEAD',
|
|
19
19
|
'git status',
|
|
20
|
-
'yarn',
|
|
20
|
+
'yarn install --frozen-lockfile',
|
|
21
21
|
`sh -e ${(0, exports.getCommandFileDir)('pr')}`,
|
|
22
22
|
];
|
|
23
23
|
exports.getPrCommands = getPrCommands;
|
|
@@ -50,7 +50,7 @@ const getMainCommands = () => [
|
|
|
50
50
|
* pipeline again.
|
|
51
51
|
*/
|
|
52
52
|
'if git describe --exact-match; then echo "Tag found" && carlin cicd-ecs-task-report --status=MainTagFound && exit 0; fi',
|
|
53
|
-
'yarn',
|
|
53
|
+
'yarn install --frozen-lockfile',
|
|
54
54
|
`sh -e ${(0, exports.getCommandFileDir)('main')}`,
|
|
55
55
|
];
|
|
56
56
|
exports.getMainCommands = getMainCommands;
|
|
@@ -61,7 +61,7 @@ const getTagCommands = ({ tag }) => [
|
|
|
61
61
|
'git fetch --tags',
|
|
62
62
|
`git checkout tags/${tag} -b ${tag}-branch`,
|
|
63
63
|
'git rev-parse HEAD',
|
|
64
|
-
'yarn',
|
|
64
|
+
'yarn install --frozen-lockfile',
|
|
65
65
|
`sh -e ${(0, exports.getCommandFileDir)('tag')}`,
|
|
66
66
|
];
|
|
67
67
|
exports.getTagCommands = getTagCommands;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "carlin",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"engines": {
|
|
76
76
|
"node": ">=14.0.0"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "7977b37564460a441cad2b18b5ca087a5048fa49"
|
|
79
79
|
}
|