This repository was archived by the owner on Aug 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -190,14 +190,14 @@ export default class LinkIndex extends Command {
190190 // prompt if they want to replace it
191191 const confirmOverwrite = await confirmOverwriteCiHypFile ( ) ;
192192 if ( ! confirmOverwrite ) {
193- this . log ( chalk . yellow ( "Skipping ci-hyp .yml creation." ) ) ;
193+ this . log ( chalk . yellow ( "Skipping ci-modus-build .yml creation." ) ) ;
194194 shouldCreateCIFile = false ;
195195 }
196196 }
197197
198198 if ( shouldCreateCIFile ) {
199199 await fs . writeFile ( ciHypFilePath , ciStr , { flag : "w" } ) ;
200- this . log ( chalk . green ( "Successfully created ci-hyp.yml! 🎉 " ) ) ;
200+ this . log ( chalk . green ( "Modus CI workflow added to your project. Commit this change to initiate a deployment to Hypermode. " ) ) ;
201201 }
202202
203203 this . log ( chalk . green ( "Linking complete! 🎉" ) ) ;
Original file line number Diff line number Diff line change 88 */
99
1010export const ciStr = `
11- name: ci-hypermode-functions
11+ name: Build and publish Modus app
1212
1313on:
1414 workflow_dispatch:
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export function getSlugFromName(name: string): string {
8585export async function confirmOverwriteCiHypFile ( ) : Promise < boolean > {
8686 return inquirer . confirm ( {
8787 default : true ,
88- message : "A ci-hyp .yml file already exists. Would you like to overwrite it?" ,
88+ message : "A ci-modus-build .yml file already exists. Would you like to overwrite it?" ,
8989 } ) ;
9090}
9191
@@ -118,7 +118,7 @@ export function getGithubWorkflowDir(): string {
118118}
119119
120120export function getCiHypFilePath ( ) : string {
121- return path . join ( getGithubWorkflowDir ( ) , "ci-hyp .yml" ) ;
121+ return path . join ( getGithubWorkflowDir ( ) , "ci-modus-build .yml" ) ;
122122}
123123
124124export function getGitConfigFilePath ( ) : string {
You can’t perform that action at this time.
0 commit comments