PowerShell/Scripts/install-github-cli.ps1

37 lines
1.1 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-08-24 21:46:11 +02:00
.SYNOPSIS
2021-09-24 17:19:49 +02:00
Installs GitHub CLI
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2023-08-07 19:52:34 +02:00
This PowerShell script installs the GitHub command-line interface (CLI).
2021-08-24 21:46:11 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./install-github-cli.ps1
2023-08-07 19:52:34 +02:00
Installing GitHub CLI...
Installation of GitHub CLI took 17 sec
2021-08-24 21:46:11 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-08-24 21:46:11 +02:00
#>
try {
2023-08-07 19:52:34 +02:00
"⏳ Installing GitHub CLI..."
2021-08-24 21:46:11 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
if ($IsMacOS) {
2023-08-06 21:35:36 +02:00
& brew install gh
2021-08-24 21:46:11 +02:00
} elseif ($IsLinux) {
2023-08-07 19:52:34 +02:00
& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg
2021-08-24 21:46:11 +02:00
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
2023-08-07 19:52:34 +02:00
& sudo apt update
& sudo apt install gh
2023-08-06 21:35:36 +02:00
} else {
& winget install --id GitHub.cli
2023-08-07 19:52:34 +02:00
}
2021-08-24 21:46:11 +02:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2023-08-07 19:52:34 +02:00
"✔️ Installation of GitHub CLI took $Elapsed sec"
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-08-24 21:46:11 +02:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-08-24 21:46:11 +02:00
exit 1
}