Skip to content

Commit

Permalink
Use python3 to install awscli in production environment
Browse files Browse the repository at this point in the history
  • Loading branch information
ppcano committed Feb 25, 2021
1 parent d9489a1 commit 7d168ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ jobs:
- name: Build project
run: npm run build:incremental
- name: Install AWS CLI dependencies
run: sudo apt-get update && sudo apt-get -y install python-pip python-dev
run: sudo apt-get update && sudo apt-get -y install python3-pip python-dev
- name: Install AWS CLI
run: sudo pip install awscli
run: sudo pip3 install awscli
- name: Deploy
run: npm run deploy

0 comments on commit 7d168ba

Please sign in to comment.