You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/@ionic/cli/src/commands/deploy/build.ts
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -48,12 +48,12 @@ export class BuildCommand extends Command {
48
48
groups: [MetadataGroup.PAID],
49
49
summary: 'Create a deploy build on Appflow',
50
50
description: `
51
-
This command creates a deploy build on Ionic Appflow. While the build is running, it prints the remote build log to the terminal. If the build is successful, it downloads the created web build zip file in the current directory.
51
+
This command creates a deploy build on Ionic Appflow. While the build is running, it prints the remote build log to the terminal. If the build is successful, it downloads the created web build zip file in the current directory. Downloading build artifacts can be skipped by supplying the flag ${input('skip-download')}.
52
+
53
+
Apart from ${input('--commit')}, every option can be specified using the full name setup within the Appflow Dashboard[^dashboard].
52
54
53
55
Customizing the build:
54
56
- The ${input('--environment')} and ${input('--channel')} options can be used to customize the groups of values exposed to the build.
55
-
56
-
Apart from ${input('--commit')}, every option can be specified using the full name setup within the Appflow Dashboard[^dashboard].
57
57
`,
58
58
footnotes: [
59
59
{
@@ -66,6 +66,7 @@ Apart from ${input('--commit')}, every option can be specified using the full na
Copy file name to clipboardExpand all lines: packages/@ionic/cli/src/commands/package/build.ts
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ export class BuildCommand extends Command {
71
71
groups: [MetadataGroup.PAID],
72
72
summary: 'Create a package build on Appflow',
73
73
description: `
74
-
This command creates a package build on Ionic Appflow. While the build is running, it prints the remote build log to the terminal. If the build is successful, it downloads the created app package file in the current directory.
74
+
This command creates a package build on Ionic Appflow. While the build is running, it prints the remote build log to the terminal. If the build is successful, it downloads the created app package file in the current directory. Downloading build artifacts can be skipped by supplying the flag ${input('skip-download')}.
75
75
76
76
Apart from ${input('--commit')}, every option can be specified using the full name setup within the Dashboard[^dashboard].
77
77
@@ -104,6 +104,7 @@ if you do not wish to download ${input('apk')}.
0 commit comments