From 37b5fb702db7f6a44a4301b0801c3b34548b449f Mon Sep 17 00:00:00 2001 From: devthejo Date: Wed, 20 Dec 2023 22:56:37 +0100 Subject: [PATCH] fix: uptag --- uptag/action.yaml | 4 ++-- uptag/index.js | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/uptag/action.yaml b/uptag/action.yaml index 6de332b..eddc2c2 100644 --- a/uptag/action.yaml +++ b/uptag/action.yaml @@ -45,10 +45,10 @@ runs: echo "Using tag: $TAG" - export CD_WORKING_DIR=$PWD + export CD_WORKING_DIR="$PWD" cd $GITHUB_ACTION_PATH yarn node index.js - cd $CD_WORKING_DIR + cd "$CD_WORKING_DIR" git config user.name "forgejo-actions" git config user.email "bot@devthefuture.org" diff --git a/uptag/index.js b/uptag/index.js index 016520f..d4d4103 100644 --- a/uptag/index.js +++ b/uptag/index.js @@ -35,7 +35,6 @@ const main = async () => { const cdEnv = process.env.CD_ENV; const cdKey = process.env.CD_KEY; const workingDir = process.env.CD_WORKING_DIR; - process.cwd(workingDir); let apps; if (cdApp.includes("\n")) { apps = yamlLoadAll(cdApp); @@ -48,7 +47,7 @@ const main = async () => { const { name, key = cdKey, tag = defaultTag } = app; const valuesFile = `apps/${name}/envs/${env}/values.yaml`; console.log(`${valuesFile} -> ${key}=${tag}`); - const valuesRaw = await fs.readFile(valuesFile, { encoding: "utf-8" }) + const valuesRaw = await fs.readFile(`${workingDir}/valuesFile`, { encoding: "utf-8" }) const values = yaml.parse(valuesRaw); set(values, key, tag); await fs.writeFile(yaml.stringify(values), { encoding: "utf-8" });