Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions .github/workflows/deploy-admin-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,8 @@ jobs:
needs: build-with-gradle

steps:
- uses: actions/checkout@v4
- name: Copy Docker Compose File
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.EC2_HOST }}
username: ubuntu
key: ${{ secrets.EC2_SSH_KEY }}
source: "docker-compose.yml"
target: ${{ env.EC2_DEPLOY_PATH }}

- name: Deploy to EC2
uses: appleboy/ssh-action@v1.0.3
uses: appleboy/ssh-action@master
env:
AWS_ACCESS_KEY_ID: ${{ secrets.DEVSERVER_CICD_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.DEVSERVER_CICD_SECRET_KEY }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ public static void main(String[] args) {
org.springframework.boot.SpringApplication.run(ApiAdminApplication.class, args);
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ public static void main(String[] args) {
SpringApplication.run(ApiUserApplication.class, args);
}
}