We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b41d8d commit ffd2f7fCopy full SHA for ffd2f7f
.github/workflows/get_artifact_dir_name.js
@@ -1,10 +1,10 @@
1
const fs = require("node:fs");
2
const os = require("node:os");
3
4
-const { dirName: artifactDirName } = require("../../cli/bin_path.js");
+const { platformDir } = require("#cli/bin_path");
5
6
// Pass artifactDirName to subsequent GitHub actions
7
fs.appendFileSync(
8
process.env.GITHUB_ENV,
9
- `artifact_dir_name=${artifactDirName}${os.EOL}`,
+ `artifact_dir_name=${platformDir}${os.EOL}`,
10
);
0 commit comments