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 848165c commit f8b5a36Copy full SHA for f8b5a36
src/git-utils.ts
@@ -30,7 +30,8 @@ export async function copyAssets(
30
if (file.endsWith('.git') || file.endsWith('.github')) {
31
continue;
32
}
33
- await io.cp(file, `${workDir}/`, copyOpts);
+ const filePath = path.join(publishDir, file);
34
+ await io.cp(filePath, `${workDir}/`, copyOpts);
35
core.info(`[INFO] copy ${file}`);
36
37
0 commit comments