@kumori/aurora-backend-handler 1.1.77 → 1.1.78

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.
@@ -957,12 +957,9 @@ export async function generateServiceSpec(
957
957
  imageTag: withDefaultValue(form.imageTag, "").trim(),
958
958
  registryCredentialsSecret: form.config.resources
959
959
  .map((r) => {
960
- if (r.type === "secret" && r.key === "registryCredentials") {
960
+ if (r.type === "secret" && (r.key === "registryCredentials" || r.name === "registryCredentials")) {
961
961
  return r.name;
962
962
  }
963
- if (r.type === "secret" && r.name === "registryCredentials") {
964
- return r.value;
965
- }
966
963
  })
967
964
  .find((name) => name !== undefined),
968
965
  config: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-backend-handler",
3
- "version": "1.1.77",
3
+ "version": "1.1.78",
4
4
  "description": "backend handler",
5
5
  "main": "backend-handler.ts",
6
6
  "scripts": {