We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b432a2 commit 3834a35Copy full SHA for 3834a35
1 file changed
.circleci/config.yml
@@ -54,6 +54,16 @@ jobs:
54
- checkout
55
- attach_workspace:
56
at: .
57
+ - run:
58
+ name: Install GitHub CLI
59
+ command: |
60
+ curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
61
+ 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
62
+ sudo apt-get update
63
+ sudo apt-get install -y gh
64
65
+ name: Authenticate GitHub CLI
66
+ command: echo "$GITHUB_OAUTH_TOKEN" | gh auth login --with-token
67
- run:
68
name: Generate checksums
69
command: cd bin && sha256sum * > SHA256SUMS
0 commit comments