Skip to content

Instantly share code, notes, and snippets.

@bzuillsmith
Created December 22, 2022 17:54
Show Gist options
  • Save bzuillsmith/18961c6ccf1a95e56487c5113389f68f to your computer and use it in GitHub Desktop.
Save bzuillsmith/18961c6ccf1a95e56487c5113389f68f to your computer and use it in GitHub Desktop.
Pipeline Script: Install the AWS CLI

Install the AWS CLI

mcr.microsoft.com/dotnet/sdk:6.0

script:
  # Install Unzip
  - apt-get update
  - apt-get install unzip
  # Install the AWS CLI
  - curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
  - unzip awscliv2.zip
  - ./aws/install
  - rm awscliv2.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment