Skip to content

Commit de2be21

Browse files
authored
Add google-cloud-cli gcloud-sdk (#500)
1 parent 70b2024 commit de2be21

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.github/workflows/tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
./deb-get install bitwarden >/dev/null
4343
./deb-get install obs-studio >/dev/null
4444
./deb-get install neovim >/dev/null
45+
./deb-get install google-cloud-cli >/dev/null
4546
4647
4748
# All these commands should return a non 0 status

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ cog.out(pretty_list)
209209
| [<img src=".github/direct.png" align="top" width="20" />](https://gitter.im/) | `gitter` | <i>A chat and networking platform to manage and connect communities through messaging, content and discovery.</i> |
210210
| [<img src=".github/github.png" align="top" width="20" />](https://github.com/ankurk91/google-chat-electron) | `google-chat-electron` | <i>An unofficial desktop app for Google Chat.</i> |
211211
| [<img src=".github/debian.png" align="top" width="20" />](https://www.google.com/chrome/) | `google-chrome-stable` | <i>Fast, Secure Browser from Google.</i> |
212+
| [<img src=".github/debian.png" align="top" width="20" />](https://cloud.google.com/sdk/gcloud) | `google-cloud-cli` | <i>The Google Cloud CLI is a set of tools to create and manage Google Cloud resources.</i> |
212213
| [<img src=".github/debian.png" align="top" width="20" />](https://www.google.com/earth/versions/) | `google-earth-pro-stable` | <i>Explore worldwide satellite imagery and 3D buildings and terrain for hundreds of cities.</i> |
213214
| [<img src=".github/launchpad.png" align="top" width="20" />](https://github.com/arunsivaramanneo/GPU-Viewer) | `gpu-viewer` | <i>A front-end to glxinfo, vulkaninfo, clinfo and es2_info.</i> |
214215
| [<img src=".github/github.png" align="top" width="20" />](https://github.com/anchore/grype) | `grype` | <i>A vulnerability scanner for container images and filesystems.</i> |

deb-get

+9
Original file line numberDiff line numberDiff line change
@@ -2598,6 +2598,15 @@ function deb_smartgit() {
25982598
SUMMARY="A graphical Git client with support for pull requests for GitHub and Bitbucket."
25992599
}
26002600

2601+
function deb_google-cloud-cli() {
2602+
GPG_KEY_URL="https://packages.cloud.google.com/apt/doc/apt-key.gpg"
2603+
APT_LIST_NAME="google-cloud-cli"
2604+
APT_REPO_URL="deb [signed-by=/usr/share/keyrings/${APT_LIST_NAME}-archive-keyring.gpg] https://packages.cloud.google.com/apt cloud-sdk main"
2605+
PRETTY_NAME="Google Cloud SDK"
2606+
WEBSITE="https://cloud.google.com/sdk"
2607+
SUMMARY="The Google Cloud CLI is a set of tools to create and manage Google Cloud resources. You can use these tools to perform many common platform tasks from the command line or through scripts and other automation."
2608+
}
2609+
26012610
# Create an array to track those deb_ functions being loaded by this script
26022611
readonly DEB_GET_APPS=($(declare -F | grep deb_ | sed 's|declare -f deb_||g' | sort))
26032612

0 commit comments

Comments
 (0)