Skip to content

Commit

Permalink
#3 fix: jar 파일명 및 복사 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yo0oni committed Jan 14, 2024
1 parent 5b78109 commit b8cda80
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,13 @@ jobs:
- name: Generate deployment package
run: |
mkdir -p deploy
cp build/libs/howAboutTrip.jar deploy/howAboutTrip-prod-ebextensions-1.jar
cp build/libs/howAboutTrip.jar deploy/application.jar
cp Procfile deploy/Procfile
cp -r .platform deploy/.platform
cd deploy && zip -r deploy.zip .
- name: Beanstalk Deploy
uses: einaregilsson/beanstalk-deploy@v21
uses: einaregilsson/beanstalk-deploy@v20
with:
aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion backend/Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: java -jar howAboutTrip-prod-ebextensions-1.jar
web: java -jar howAboutTrip.jar

0 comments on commit b8cda80

Please sign in to comment.