Install GH CLI #16
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
name: "Install GH CLI" | |
on: | |
workflow_dispatch: | |
jobs: | |
pristine-install: | |
name: "Install GH CLI on a Pristine Container" | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:jammy | |
options: --user 0 | |
steps: | |
- name: "Print git --version" | |
run: | | |
which git || echo "::warning::git does not appear to be installed" | |
git --version || echo "::warning::could not determine installed version of git" | |
- name: "Configure apt" | |
run: | | |
apt update | |
apt-get install wget -y | |
apt-get install software-properties-common -y | |
add-apt-repository ppa:git-core/ppa | |
apt update | |
- name: "Install GH CLI" | |
run: | | |
mkdir -p -m 755 /etc/apt/keyrings | |
wget -qO- https://cli.github.com/packages/githubcli-archive-keyring.gpg | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null | |
chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg | |
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null | |
apt update | |
apt install gh -y | |
apt show gh | |
- name: "Print git --version" | |
run: | | |
which git || echo "::warning::git does not appear to be installed" | |
git --version || echo "::warning::could not determine installed version of git" | |
# - name: "Print .git/config" | |
# run: cat .git/config | |