From 0308292dbd4beec0e88b78d42ec45962b80eed72 Mon Sep 17 00:00:00 2001 From: devthejo Date: Wed, 20 Dec 2023 22:35:59 +0100 Subject: [PATCH] feat: gh action path --- uptag/action.yaml | 4 +++- uptag/index.js | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/uptag/action.yaml b/uptag/action.yaml index 9e5398c..f856ebe 100644 --- a/uptag/action.yaml +++ b/uptag/action.yaml @@ -45,7 +45,9 @@ runs: echo "Using tag: $TAG" - yarn node $GITHUB_ACTION_PATH/index.js + cd $GITHUB_ACTION_PATH + yarn node index.js + cd $GITHUB_WORKSPACE git config user.name "forgejo-actions" git config user.email "bot@devthefuture.org" diff --git a/uptag/index.js b/uptag/index.js index fd13fc6..f3fcfaa 100644 --- a/uptag/index.js +++ b/uptag/index.js @@ -34,6 +34,8 @@ const main = async () => { const cdApp = process.env.CD_APP; const cdEnv = process.env.CD_ENV; const cdKey = process.env.CD_KEY; + const workspace = process.env.GITHUB_WORKSPACE; + process.cwd(workspace); let apps; if (cdApp.includes("\n")) { apps = yamlLoadAll(cdApp);