We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9258e6 commit 82d9a02Copy full SHA for 82d9a02
action.yml
@@ -171,7 +171,7 @@ runs:
171
ref
172
});
173
174
- console.log("Adding file:", manifestPath);
+ console.log('Adding file:', manifestPath);
175
const newTree = await octokit.rest.git.createTree({
176
owner,
177
repo,
@@ -185,7 +185,7 @@ runs:
185
},
186
...fs.readdirSync('${{ github.workspace }}/dist').map((file) => {
187
const relativePath = path.relative('.', '${{ github.workspace }}/dist/' + file);
188
- console.log("Adding file:", '${{ github.workspace }}/dist/' + file);
+ console.log('Adding file:', '${{ github.workspace }}/dist/' + file);
189
return {
190
path: relativePath,
191
mode: '100644',
0 commit comments