Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Add AWS CLI in order to ship library artifacts from container #194

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,13 @@ jobs:
- name: Install dependencies
run: |
yum update -y
yum install -y cmake rpm-build gcc-c++ make epel-release
yum install -y cmake rpm-build gcc-c++ make epel-release unzip
yum repolist
yum install -y dpkg
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
aws --version

- name: Build and ship library artifacts
env:
Expand Down