Skip to content

Commit

Permalink
fix: Elastic Beanstalk 설정 파일 적용 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunmin0317 committed Dec 24, 2024
1 parent dbfd65a commit 15bc619
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,7 @@ jobs:
run: echo "artifact=$(ls ./build/libs)" >> $GITHUB_ENV

- name: Generate deployment package
run: |
mkdir -p deploy
cp ./build/libs/${{env.artifact}} ./deploy/${{env.artifact}}
cp -r .ebextensions ./deploy/.ebextensions
zip -r ./deploy/smunity.zip ./deploy
run: zip -r smunity.zip ./build/libs/${{env.artifact}} .ebextensions

- name: Beanstalk Deploy
uses: einaregilsson/beanstalk-deploy@v20
Expand All @@ -54,5 +50,5 @@ jobs:
environment_name: smunity-env
version_label: github-action-${{steps.current-time.outputs.formattedTime}}
region: ap-northeast-2
deployment_package: ./deploy/smunity.zip
deployment_package: ./smunity.zip
wait_for_deployment: false

0 comments on commit 15bc619

Please sign in to comment.