Skip to content

Commit 171c5ee

Browse files
authored
Fix: install copilot in deploy workflow (#117)
2 parents 0d4aa47 + bdd6a27 commit 171c5ee

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,10 @@ jobs:
6767

6868
- name: Install AWS Copilot CLI
6969
run: |
70-
curl -Lo copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-linux
71-
chmod +x copilot
72-
sudo mv copilot /usr/local/bin/copilot
70+
mkdir -p ./.tools
71+
curl -Lo ./.tools/copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-linux
72+
chmod +x ./.tools/copilot
73+
sudo mv ./.tools/copilot /usr/local/bin/copilot
7374
7475
- name: Deploy web Service
7576
run: |

0 commit comments

Comments
 (0)