2024-10-01 13:37:53 +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...
|
2024-09-22 10:43:38 +02:00
|
|
|
✔ GitHub CLI installed successfully in 17s - to authenticate execute: 'gh auth login'.
|
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..."
|
2024-09-22 10:43:38 +02:00
|
|
|
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
2021-08-24 21:46:11 +02:00
|
|
|
|
|
|
|
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
|
|
|
& sudo apt install gh
|
2023-08-06 21:35:36 +02:00
|
|
|
} else {
|
|
|
|
& winget install --id GitHub.cli
|
2024-09-22 10:43:38 +02:00
|
|
|
if ($lastExitCode -ne "0") { throw "Installation of GitHub CLI failed, maybe it's already installed." }
|
2023-08-07 19:52:34 +02:00
|
|
|
}
|
2024-09-22 10:43:38 +02:00
|
|
|
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
2024-10-01 13:37:53 +02:00
|
|
|
"✅ GitHub CLI installed successfully in $($elapsed)s - to authenticate execute: 'gh auth login'"
|
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
|
|
|
|
}
|