Skip to content

Commit 2df9df6

Browse files
authored
chore: add -y to apt calls (#2120)
1 parent 3b1699d commit 2df9df6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codebuild/release/upload_artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ phases:
2323
# install gh cli in order to upload artifacts
2424
- curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg
2525
- echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null
26-
- apt update
27-
- apt install gh
26+
- apt -y update
27+
- apt -y install gh
2828
build:
2929
commands:
3030
- gh version

0 commit comments

Comments
 (0)