Skip to content

Commit

Permalink
fix mac release
Browse files Browse the repository at this point in the history
  • Loading branch information
Arqu committed Nov 18, 2022
1 parent 08e187b commit da06566
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,19 +183,25 @@ jobs:
cargo build --profile optimized-release -p iroh -p iroh-gateway -p iroh-p2p -p iroh-store
- name: Setup awscli on linux
if: matrix.os == 'ubuntu-latest'
if: matrix.name == 'ubuntu-latest'
run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install --update
- name: Setup awscli on linux
if: matrix.os == 'ubuntu-arm-latest'
if: matrix.name == 'ubuntu-arm-latest'
run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install --update
- name: Setup awscli on mac
if: matrix.os == 'macos-latest'
run: |
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /
- name: Set aws credentials
if: matrix.os != 'windows-latest'
run: |
Expand Down

0 comments on commit da06566

Please sign in to comment.