From b054c66d7134690be148c23c5562f8c4037181fd Mon Sep 17 00:00:00 2001 From: Jiyoon Kim Date: Sun, 14 Jan 2024 02:23:06 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A6=AC=EB=88=85=EC=8A=A4=20=EB=AA=85?= =?UTF-8?q?=EB=A0=B9=EC=96=B4=20=EC=88=98=EC=A0=95=20=EB=B0=8F=20=EB=B9=88?= =?UTF-8?q?=EC=8A=A4=ED=86=A1=20deployment=5Fpackage=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b685e701..53e86808 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -52,7 +52,7 @@ jobs: mkdir -p deploy cp build/libs/howAboutTrip.jar deploy/howAboutTrip-prod-ebextensions-1.jar cp Procfile deploy/Procfile - cd deploy && zip -r howAboutTrip-prod-label-${{steps.current-time.outputs.formattedTime}}-${{github.sha}} . + cd deploy && zip -r howAboutTrip-deploy.zip . - name: Beanstalk Deploy uses: einaregilsson/beanstalk-deploy@v21 @@ -61,6 +61,6 @@ jobs: aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} application_name: how-about-trip environment_name: How-about-trip-env - version_label: howAboutTrip-prod-label-${{steps.current-time.outputs.formattedTime}}-${{github.sha}} + version_label: github-action-${{steps.current-time.outputs.formattedTime}} region: ap-northeast-2 - deployment_package: howAboutTrip-prod-label-${{steps.current-time.outputs.formattedTime}}-${{github.sha}}.zip + deployment_package: deploy/deploy.zip \ No newline at end of file