We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 465c8c6 commit c6df785Copy full SHA for c6df785
1 file changed
tests/test.sh
@@ -4,7 +4,15 @@ set -ex
4
5
export COMPOSER_PROCESS_TIMEOUT=100000
6
7
-apk add procps git unzip github-cli openssh
+apt-get install procps git unzip gh openssh-client
8
+sudo mkdir -p -m 755 /etc/apt/keyrings
9
+out=$(mktemp) && wget -nv -O$out https://cli.github.com/packages/githubcli-archive-keyring.gpg
10
+cat $out | sudo tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null
11
+chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg
12
+mkdir -p -m 755 /etc/apt/sources.list.d
13
+echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
14
+apt update
15
+apt install gh -y
16
17
cd /tmp
18
0 commit comments