Skip to content

Commit 789e396

Browse files
fix: correct path for dist file in git tree
Changed dist path to relative path for accurate indexing.
1 parent 9690d25 commit 789e396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ runs:
172172
});
173173
174174
console.log('Adding file:', manifestPath);
175-
const distPath = '${{ github.workspace }}/dist/'
175+
const distPath = '${{ github.workspace }}/dist/';
176176
const relativePath = path.relative('.', distPath + 'index.js');
177177
console.log('Adding file:', relativePath);
178178
const newTree = await octokit.rest.git.createTree({
@@ -187,7 +187,7 @@ runs:
187187
content: fs.readFileSync(manifestPath, 'utf8'),
188188
},
189189
{
190-
path: distPath,
190+
path: relativePath,
191191
mode: '100644',
192192
type: 'blob',
193193
content: fs.readFileSync(relativePath, 'utf8'),

0 commit comments

Comments
 (0)