fix: secrets decryption
This commit is contained in:
parent
f60c640dc6
commit
35450dfc8f
3 changed files with 3 additions and 2 deletions
|
|
@ -258,6 +258,7 @@ import * as buildpacks from '../lib/buildPacks';
|
|||
];
|
||||
if (secrets.length > 0) {
|
||||
secrets.forEach((secret) => {
|
||||
secret.value = decrypt(secret.value)
|
||||
if (pullmergeRequestId) {
|
||||
if (secret.isPRMRSecret) {
|
||||
envs.push(`${secret.name}=${secret.value}`);
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ import * as serviceFields from './serviceFields'
|
|||
import { saveBuildLog } from './buildPacks/common';
|
||||
import { scheduler } from './scheduler';
|
||||
|
||||
export const version = '3.8.2';
|
||||
export const version = '3.8.3';
|
||||
export const isDev = process.env.NODE_ENV === 'development';
|
||||
|
||||
const algorithm = 'aes-256-ctr';
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "coolify",
|
||||
"description": "An open-source & self-hostable Heroku / Netlify alternative.",
|
||||
"version": "3.8.2",
|
||||
"version": "3.8.3",
|
||||
"license": "Apache-2.0",
|
||||
"repository": "github:coollabsio/coolify",
|
||||
"scripts": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue