Skip to content

Commit

Permalink
cicd: 배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyaak committed Nov 3, 2024
1 parent 7a25666 commit e8e98f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aws-api-module-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Deploy on Test-Server
uses: appleboy/ssh-action@master
with:
host: ${{ AWS_PUBLIC_IP }}
host: ${{ secrets.AWS_PUBLIC_IP }}
port: 22
username: ${{ secrets.AWS_USERNAME }}
key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aws-batch-module-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Deploy on Test-Server
uses: appleboy/ssh-action@master
with:
host: ${{ AWS_PUBLIC_IP }}
host: ${{ secrets.AWS_PUBLIC_IP }}
port: 22
username: ${{ secrets.AWS_USERNAME }}
key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
)
public class TechPickApiApplication {
public static void main(String[] args) {
// 테스트를 위한 주석 추가
// 테스트를 위한 주석 추가!
SpringApplication.run(TechPickApiApplication.class, args);
}
}

0 comments on commit e8e98f6

Please sign in to comment.