@@ -15,7 +15,7 @@ async function run() {
1515
1616 const infoFile = [ ] ;
1717 for ( const pkg of packages ) {
18- core . debug ( "Preparing" , colors . magenta ( `${ pkg . name } ` ) ) ;
18+ core . info ( "Preparing" , colors . magenta ( `${ pkg . name } ` ) ) ;
1919 const packageDir = path . join ( rootDir , pkg . directory ) ;
2020 const buildDir = path . join ( packageDir , pkg . buildDir || "./" ) ;
2121 if ( ! fs . existsSync ( buildDir ) ) {
@@ -30,17 +30,17 @@ async function run() {
3030 } ) ;
3131
3232 /** Copy build files to artifacts dir */
33- core . debug ( " Copying build files to artifacts dir" ) ;
33+ core . info ( ` Copying build files from ${ pkgDir } ` ) ;
3434 fs . cpSync ( buildDir , path . join ( artifactsDir , pkgDir ) , { recursive : true } ) ;
3535 }
3636 /** Write package info to json file same basename with zip file */
37- core . debug ( "Writing packages info to json file" ) ;
37+ core . info ( "Writing projects. json file" ) ;
3838 fs . writeFileSync (
3939 path . join ( artifactsDir , "projects.json" ) ,
4040 JSON . stringify ( infoFile , null , 2 ) ,
4141 ) ;
4242 /** Copy COMMIT_CHANGELOG.md to artifacts dir */
43- core . debug ( "Copying COMMIT_CHANGELOG.md to artifacts dir " ) ;
43+ core . debug ( "Copying COMMIT_CHANGELOG.md" ) ;
4444 fs . cpSync (
4545 path . join ( rootDir , "COMMIT_CHANGELOG.md" ) ,
4646 path . join ( artifactsDir , "COMMIT_CHANGELOG.md" ) ,
0 commit comments