Skip to content

Commit fa95bcf

Browse files
committed
Fix awscli install
1 parent 2eaa08e commit fa95bcf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/pr_tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,10 @@ jobs:
6060

6161
- name: Install AWS CLI
6262
run: |
63-
sudo apt-get update
64-
sudo apt-get install -y awscli
63+
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
64+
unzip awscliv2.zip
65+
sudo ./aws/install
66+
rm -rf aws awscliv2.zip
6567
6668
- name: Run functional tests with devtool
6769
run: |

0 commit comments

Comments
 (0)