Skip to content

Commit

Permalink
[eas-cli] add --submit and -s aliases to --auto-submit flag (#2846
Browse files Browse the repository at this point in the history
)

* [eas-cli] add `--submit` and `-s` aliases to `--auto-submit` flag

* changelog
  • Loading branch information
szdziedzic authored Jan 30, 2025
1 parent 76d4e65 commit e0f6932
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ This is the log of notable changes to EAS CLI and related packages.

### 🎉 New features

- Add `--submit` and `-s` as aliases for `--auto-submit` flag. ([#2846](https://github.com/expo/eas-cli/pull/2846) by [@szdziedzic](https://github.com/szdziedzic))

### 🐛 Bug fixes

### 🧹 Chores
Expand Down
2 changes: 2 additions & 0 deletions packages/eas-cli/src/commands/build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,12 @@ export default class Build extends EasCommand {
description: 'Clear cache before the build',
}),
'auto-submit': Flags.boolean({
char: 's',
default: false,
description:
'Submit on build complete using the submit profile with the same name as the build profile',
exclusive: ['auto-submit-with-profile'],
aliases: ['submit'],
}),
'auto-submit-with-profile': Flags.string({
description: 'Submit on build complete using the submit profile with provided name',
Expand Down

0 comments on commit e0f6932

Please sign in to comment.