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);