We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9690d25 commit 789e396Copy full SHA for 789e396
action.yml
@@ -172,7 +172,7 @@ runs:
172
});
173
174
console.log('Adding file:', manifestPath);
175
- const distPath = '${{ github.workspace }}/dist/'
+ const distPath = '${{ github.workspace }}/dist/';
176
const relativePath = path.relative('.', distPath + 'index.js');
177
console.log('Adding file:', relativePath);
178
const newTree = await octokit.rest.git.createTree({
@@ -187,7 +187,7 @@ runs:
187
content: fs.readFileSync(manifestPath, 'utf8'),
188
},
189
{
190
- path: distPath,
+ path: relativePath,
191
mode: '100644',
192
type: 'blob',
193
content: fs.readFileSync(relativePath, 'utf8'),
0 commit comments