(Preview) build and upload your app
1 2Usage: forge build [options] [command]
1 2--verbose enable verbose mode -f, --no-verify disable pre-build checks -t, --tag <tag> (Preview) specify a custom build tag for build --non-interactive run the command without input prompts -h, --help display help for command
1 2list [options] (Preview) list builds for your app
The forge build
command packages your app's code and uploads it to the Forge platform. Each build is assigned a unique, immutable, and case-insensitive tag, either generated automatically or provided by the user. Builds are environment-agnostic, allowing deployment to any environment.
Manifests containing environment variables are not presently supported by this command.
By default, this command:
forge lint
) and reports any compilation errors.Builds that are not actively deployed to any environment are retained for a minimum of 30 days. After this period, they may be subject to cleanup. However, builds that are actively deployed will not be cleaned up as long as they remain deployed.
1 2forge build
This command bundles your app's code, uploads it to the Forge platform, and generates a unique 36-character UUID tag to reference the build.
1 2forge build --tag 3f6f3d
This command bundles your app's code, uploads it to the Forge platform, and assigns the build tag 3f6f3d
.
Rate this page: