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
62
62
63
63
const remote = process . env . RCLONE_REMOTE || "rescript" ;
64
64
const bucket = "cdn-assets" ;
65
- const dest = `${ remote } :${ bucket } /${ tag } ` ;
66
65
67
66
// Create a temporary directory for bundling
68
67
const tmpDir = path . join ( playgroundDir , ".tmp" ) ;
@@ -91,11 +90,11 @@ exec(`tar \\
91
90
console . log ( `Uploading v${ version } artifacts...` ) ;
92
91
exec ( `rclone sync ${ rcloneOpts } --fast-list \\
93
92
"${ artifactsDir } " \\
94
- "${ dest } "
93
+ "${ remote } : ${ bucket } / ${ tag } "
95
94
` ) ;
96
95
97
96
console . log ( "Uploading archive..." ) ;
98
97
exec ( `rclone copyto ${ rcloneOpts } \\
99
98
"${ archivePath } " \\
100
- "${ dest } .tar.zst"
99
+ "${ remote } : ${ bucket } /playground-bundles/ ${ tag } .tar.zst"
101
100
` ) ;
You can’t perform that action at this time.
0 commit comments