Skip to content

Commit

Permalink
Update action distribution files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored May 28, 2024
1 parent 555d410 commit 3bdb598
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion upload-release/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50261,7 +50261,9 @@ async function run() {
}
const files = core.getInput('files');
let uploads = files.includes('\n') ? files.split('\n') : files.split(',');
uploads = uploads.map(s => s.trim()).filter(s => s !== '');
uploads = uploads
.map(s => s.trim()).filter(s => s !== '')
.map(s => s.includes(':') ? s.split(':').slice(1).join(':') : s);
client = await (0, node_scp_1.Client)({
host: core.getInput('host'),
port: core.getInput('port'),
Expand Down

0 comments on commit 3bdb598

Please sign in to comment.