Skip to content

Commit

Permalink
Fix upload target of stdlib runtime files (#7267)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsnobip authored Jan 31, 2025
1 parent cc6c87c commit bb0b6a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playground/upload_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ TARGET="ftp://${KEYCDN_SRV}/v${VERSION}/${DIR}"

echo "Uploading '$SOURCE/*.js' to '$TARGET/*.js'..."

find "${SOURCE}" -type f -name "*.js" -exec curl --ftp-create-dirs --ssl --netrc-file "$NETRC_FILE" -T {} "${TARGET}/{}" \;
find "${SOURCE}" -type f -name "*.js" -exec sh -c 'curl --ftp-create-dirs --ssl --netrc-file "$0" -T "$1" "${2}/$(basename "$1")"' "$NETRC_FILE" {} "$TARGET" \;

1 comment on commit bb0b6a7

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Syntax Benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.05.

Benchmark suite Current: bb0b6a7 Previous: e1b7fb7 Ratio
Parse RedBlackTree.res - time/run 1.3629108333333333 ms 1.2123143266666667 ms 1.12
Parse Napkinscript.res - time/run 42.4710813 ms 39.28006235333333 ms 1.08
Parse HeroGraphic.res - time/run 5.727485833333333 ms 5.13472718 ms 1.12

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.