Skip to content

Commit

Permalink
[CHORE] 복사 명령 경로 상대경로로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yummygyudon committed Nov 28, 2024
1 parent d0683e6 commit 3773b8b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,16 @@ jobs:
REGION: ${{ secrets.AWS_REGION }}
S3_BUCKET: ${{ secrets.AWS_BUCKET_NAME }}
run: |
mkdir script
mkdir ./script
aws s3 cp --region $REGION \
s3://$S3_BUCKET/dev/script/deploy.sh script/deploy.sh
s3://$S3_BUCKET/dev/script/deploy.sh ./script/deploy.sh
aws s3 cp --region $REGION \
s3://$S3_BUCKET/dev/script/switch.sh script/switch.sh
s3://$S3_BUCKET/dev/script/switch.sh ./script/switch.sh
aws s3 cp --region $REGION \
s3://$S3_BUCKET/dev/script/valid.sh script/valid.sh
s3://$S3_BUCKET/dev/script/valid.sh ./script/valid.sh
- name: Make zip file
run: zip ./$GITHUB_SHA.zip ./script appspec.yml
run: zip ./$GITHUB_SHA.zip ./script ./appspec.yml
shell: bash

- name: Upload Property Zip to S3 and Create Code Deploy
Expand Down

0 comments on commit 3773b8b

Please sign in to comment.