Skip to content

Commit 355d6fc

Browse files
gluonfieldclaude
andcommitted
fix: always use explicit --repo in deploy examples
Co-Authored-By: Claude Opus 4.6 <[email protected]>
1 parent 53ecbc7 commit 355d6fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cmd/deploy.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ To update or redeploy an existing service, use 'ink redeploy'.`,
7171
ink repo create myapp
7272
git remote add ink <remote-url-from-output>
7373
git push ink main
74-
ink deploy myapp
74+
ink deploy myapi --repo myapp
7575
7676
# GitHub repo (requires GitHub App installed)
77-
ink deploy myapi --host github --repo myorg/myapi
77+
ink deploy myapi --host github --repo myorg/myapp
7878
7979
# With options
80-
ink deploy myapi --memory 512Mi --vcpu 0.5 --env-file .env
81-
ink deploy docs --buildpack static --publish-dir dist`,
80+
ink deploy myapi --repo myapp --memory 512Mi --vcpu 0.5 --env-file .env
81+
ink deploy docs --repo docs --buildpack static --publish-dir dist`,
8282
Args: exactArgs(1),
8383
Run: func(cmd *cobra.Command, args []string) {
8484
name := args[0]

0 commit comments

Comments
 (0)