File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages/playground/scripts Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ const rcloneOpts = (process.env.CI
6262
6363const remote = process . env . RCLONE_REMOTE || "rescript" ;
6464const bucket = "cdn-assets" ;
65- const dest = `${ remote } :${ bucket } /${ tag } ` ;
6665
6766// Create a temporary directory for bundling
6867const tmpDir = path . join ( playgroundDir , ".tmp" ) ;
@@ -91,11 +90,11 @@ exec(`tar \\
9190console . log ( `Uploading v${ version } artifacts...` ) ;
9291exec ( `rclone sync ${ rcloneOpts } --fast-list \\
9392 "${ artifactsDir } " \\
94- "${ dest } "
93+ "${ remote } : ${ bucket } / ${ tag } "
9594` ) ;
9695
9796console . log ( "Uploading archive..." ) ;
9897exec ( `rclone copyto ${ rcloneOpts } \\
9998 "${ archivePath } " \\
100- "${ dest } .tar.zst"
99+ "${ remote } : ${ bucket } /playground-bundles/ ${ tag } .tar.zst"
101100` ) ;
You can’t perform that action at this time.
0 commit comments