mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix docker release deploy push flag (#2348)
This commit is contained in:
parent
81685573e1
commit
5e345783bd
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ parser.add_argument("--build-type", choices=TYPES, required=True, help="The type
|
||||||
parser.add_argument("--dry-run", action="store_true", help="Don't run any commands, just print them")
|
parser.add_argument("--dry-run", action="store_true", help="Don't run any commands, just print them")
|
||||||
subparsers = parser.add_subparsers(help="Action to perform", dest="command", required=True)
|
subparsers = parser.add_subparsers(help="Action to perform", dest="command", required=True)
|
||||||
build_parser = subparsers.add_parser("build", help="Build the image")
|
build_parser = subparsers.add_parser("build", help="Build the image")
|
||||||
build_parser.add_argument("--push", help="Also push the images")
|
build_parser.add_argument("--push", help="Also push the images", action="store_true")
|
||||||
manifest_parser = subparsers.add_parser("manifest", help="Create a manifest from already pushed images")
|
manifest_parser = subparsers.add_parser("manifest", help="Create a manifest from already pushed images")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue