Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
fix(GitHub Actions): 修复 target 路径不正确的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
BillGoldenWater committed May 11, 2023
1 parent 02947aa commit 77c238b
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions scripts/copyArtifacts.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,7 @@ async function copy(platform, buildInfos) {
// endregion

// region construct path
const bundleDirPath = path.join(
"backend",
"target",
target,
"release",
"bundle"
);
const bundleDirPath = path.join("target", target, "release", "bundle");

const pkgPath = path.join(bundleDirPath, ...pkgFilePath.split("/"));
const updatePkgPath = path.join(
Expand Down

0 comments on commit 77c238b

Please sign in to comment.