diff --git a/uptag/.pnp.cjs b/uptag/.pnp.cjs index 272f211..b974963 100755 --- a/uptag/.pnp.cjs +++ b/uptag/.pnp.cjs @@ -34,7 +34,7 @@ const RAW_RUNTIME_STATE = ]],\ ["lodash.set", [\ ["npm:4.3.2", {\ - "packageLocation": "../../../../home/jo/.yarn/berry/cache/lodash.set-npm-4.3.2-7586c942c2-10c0.zip/node_modules/lodash.set/",\ + "packageLocation": "./.yarn/cache/lodash.set-npm-4.3.2-7586c942c2-c641d31905.zip/node_modules/lodash.set/",\ "packageDependencies": [\ ["lodash.set", "npm:4.3.2"]\ ],\ @@ -54,7 +54,7 @@ const RAW_RUNTIME_STATE = ]],\ ["yaml", [\ ["npm:2.3.4", {\ - "packageLocation": "../../../../home/jo/.yarn/berry/cache/yaml-npm-2.3.4-8bb6dc2c0d-10c0.zip/node_modules/yaml/",\ + "packageLocation": "./.yarn/cache/yaml-npm-2.3.4-8bb6dc2c0d-cf03b68f8f.zip/node_modules/yaml/",\ "packageDependencies": [\ ["yaml", "npm:2.3.4"]\ ],\ diff --git a/uptag/.yarn/cache/lodash.set-npm-4.3.2-7586c942c2-c641d31905.zip b/uptag/.yarn/cache/lodash.set-npm-4.3.2-7586c942c2-c641d31905.zip new file mode 100644 index 0000000..cf0f2e2 Binary files /dev/null and b/uptag/.yarn/cache/lodash.set-npm-4.3.2-7586c942c2-c641d31905.zip differ diff --git a/uptag/.yarn/cache/yaml-npm-2.3.4-8bb6dc2c0d-cf03b68f8f.zip b/uptag/.yarn/cache/yaml-npm-2.3.4-8bb6dc2c0d-cf03b68f8f.zip new file mode 100644 index 0000000..0055530 Binary files /dev/null and b/uptag/.yarn/cache/yaml-npm-2.3.4-8bb6dc2c0d-cf03b68f8f.zip differ diff --git a/uptag/.yarnrc.yml b/uptag/.yarnrc.yml index ac9160a..7a5eb93 100644 --- a/uptag/.yarnrc.yml +++ b/uptag/.yarnrc.yml @@ -1 +1,2 @@ yarnPath: .yarn/releases/yarn-4.0.2.cjs +enableGlobalCache: false \ No newline at end of file diff --git a/uptag/action.yaml b/uptag/action.yaml index 17e2522..6de332b 100644 --- a/uptag/action.yaml +++ b/uptag/action.yaml @@ -45,10 +45,10 @@ runs: echo "Using tag: $TAG" + export CD_WORKING_DIR=$PWD cd $GITHUB_ACTION_PATH - yarn yarn node index.js - cd $GITHUB_WORKSPACE + 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 f3fcfaa..016520f 100644 --- a/uptag/index.js +++ b/uptag/index.js @@ -34,8 +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); + const workingDir = process.env.CD_WORKING_DIR; + process.cwd(workingDir); let apps; if (cdApp.includes("\n")) { apps = yamlLoadAll(cdApp);