Skip to content

Commit

Permalink
workaround for aws cli
Browse files Browse the repository at this point in the history
  • Loading branch information
summeroff committed Oct 26, 2023
1 parent 4f61e38 commit 5a8e4cb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,20 @@ jobs:
runs-on: windows-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Get the version of aws cli
run: aws --version
shell: powershell
- name: Install specific version of AWS CLI
run: |
$version = "2.13.24"
$zipfile = "AWSCLIV2.zip"
Invoke-WebRequest -OutFile $zipfile "https://awscli.amazonaws.com/AWSCLIV2-$version.msi"
Start-Process msiexec.exe -Wait -ArgumentList "/i $zipfile /qn"
rm $zipfile
shell: pwsh
- name: Get the version of aws cli after install
run: aws --version
shell: powershell
- name: Get build from cache
id: cache-check
uses: actions/cache@v3
Expand Down

0 comments on commit 5a8e4cb

Please sign in to comment.