Skip to content

Commit

Permalink
chore: docker-compose aws json 배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Jul 17, 2024
1 parent 5f37973 commit a9caf1d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/develop-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ jobs:
replace-with: '-'
flags: 'g'

# - name: Prepare deployment package
# run: |
# zip -r deployment-package.zip Dockerrun.aws.json docker-compose.yaml
- name: Prepare deployment package
run: |
zip -r deployment-package.zip Dockerrun.aws.json docker-compose.yaml
- name: Beanstalk Deploy
uses: einaregilsson/beanstalk-deploy@v22
Expand All @@ -71,7 +71,7 @@ jobs:
environment_name: "Walwal-dev-env"
version_label: "github-action-dev-${{ github.sha }}"
region: ap-northeast-2
deployment_package: docker-compose.yaml
deployment_package: deployment-package.zip # Updated path

## slack 알람
- name: Slack Alarm
Expand Down
2 changes: 1 addition & 1 deletion Dockerrun.aws.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"containerDefinitions": [
{
"name": "backend",
"image": "${DOCKERHUB_IMAGE_NAME}:latest",
"image": "${DOCKERHUB_USERNAME}/${DOCKERHUB_IMAGE_NAME}:latest",
"essential": true,
"memory": 512,
"portMappings": [
Expand Down

0 comments on commit a9caf1d

Please sign in to comment.