Skip to content

Commit 82d9a02

Browse files
chore: add logging for files being added to the git tree
Added console logs to track files in action.yml during tree creation.
1 parent c9258e6 commit 82d9a02

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
@@ -171,7 +171,7 @@ runs:
171171
ref
172172
});
173173
174-
console.log("Adding file:", manifestPath);
174+
console.log('Adding file:', manifestPath);
175175
const newTree = await octokit.rest.git.createTree({
176176
owner,
177177
repo,
@@ -185,7 +185,7 @@ runs:
185185
},
186186
...fs.readdirSync('${{ github.workspace }}/dist').map((file) => {
187187
const relativePath = path.relative('.', '${{ github.workspace }}/dist/' + file);
188-
console.log("Adding file:", '${{ github.workspace }}/dist/' + file);
188+
console.log('Adding file:', '${{ github.workspace }}/dist/' + file);
189189
return {
190190
path: relativePath,
191191
mode: '100644',

0 commit comments

Comments
 (0)