-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added new workflows for brew * brew bundle install command updated * optional param moved to description --------- Co-authored-by: Aloke Desai <[email protected]> Co-authored-by: elvis kahoro <[email protected]>
- Loading branch information
1 parent
122f4c1
commit f6ce7a5
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: Store / Backup all installed dependencies into Brewfile | ||
command: brew bundle dump | ||
tags: | ||
- homebrew | ||
description: Write all installed casks/formulae/images/taps into a Brewfile in the current directory. | ||
source_url: "https://docs.brew.sh/Manpage" | ||
author: shivamkj | ||
author_url: "https://github.com/shivamkj" | ||
shells: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: Install all dependencies from Brewfile | ||
command: brew bundle install | ||
tags: | ||
- homebrew | ||
description: Install and upgrade (by default) all dependencies from the Brewfile. Optionally you can pass [--file={{file_location}}], Otherwise homebrew finds Brewfile from the current location. | ||
source_url: "https://docs.brew.sh/Manpage" | ||
author: shivamkj | ||
author_url: "https://github.com/shivamkj" | ||
shells: [] |