@mongodb-js/signing-utils 0.3.2 → 0.3.4
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.
- package/package.json +3 -3
- package/src/garasign.sh +3 -3
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"email": "compass@mongodb.com"
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://github.com/mongodb-js/devtools-shared",
|
|
16
|
-
"version": "0.3.
|
|
16
|
+
"version": "0.3.4",
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
19
|
"url": "https://github.com/mongodb-js/devtools-shared.git"
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@mongodb-js/eslint-config-devtools": "0.9.10",
|
|
51
51
|
"@mongodb-js/mocha-config-devtools": "^1.0.2",
|
|
52
52
|
"@mongodb-js/prettier-config-devtools": "^1.0.1",
|
|
53
|
-
"@mongodb-js/tsconfig-devtools": "^1.0.
|
|
53
|
+
"@mongodb-js/tsconfig-devtools": "^1.0.2",
|
|
54
54
|
"@types/chai": "^4.2.21",
|
|
55
55
|
"@types/mocha": "^9.1.1",
|
|
56
56
|
"@types/node": "^17.0.35",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"debug": "^4.3.4",
|
|
71
71
|
"ssh2": "^1.15.0"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "ff425df9ea4651f7c4c24acc30cbf06d06007d4a"
|
|
74
74
|
}
|
package/src/garasign.sh
CHANGED
|
@@ -16,8 +16,8 @@ if [ -z ${method+omitted} ]; then echo "method must either be gpg, rpm_gpg or js
|
|
|
16
16
|
ARTIFACTORY_HOST="artifactory.corp.mongodb.com"
|
|
17
17
|
ENV_FILE="signing-envfile"
|
|
18
18
|
|
|
19
|
-
echo "GRS_CONFIG_USER1_USERNAME=${
|
|
20
|
-
echo "GRS_CONFIG_USER1_PASSWORD=${
|
|
19
|
+
echo "GRS_CONFIG_USER1_USERNAME=${garasign_username}" >> "${ENV_FILE}"
|
|
20
|
+
echo "GRS_CONFIG_USER1_PASSWORD=${garasign_password}" >> "${ENV_FILE}"
|
|
21
21
|
|
|
22
22
|
cleanup() {
|
|
23
23
|
docker logout "${ARTIFACTORY_HOST}" > /dev/null 2>&1
|
|
@@ -91,4 +91,4 @@ else
|
|
|
91
91
|
echo "Unknown signing method: $method"
|
|
92
92
|
exit 1
|
|
93
93
|
fi
|
|
94
|
-
echo "Finished signing $file"
|
|
94
|
+
echo "Finished signing $file"
|