Balena push new release

balena push is a command-line tool used to deploy a new release of your application to a balenaCloud fleet. Here's a breakdown of the command and its options:

Basic syntax:

balena push <release-name> <app-name>

Options:

Example:

balena push my-new-release my-app

This command will deploy the new release named my-new-release to the my-app balena application.

Additional options:

Example with additional options:

balena push -a my-app -r my-new-release -f -v

This command will deploy the new release named my-new-release to the my-app balena application, force the deployment even if there are changes to the application code, and display verbose output.

Tips: