-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from KOA-TF/develop
Develop to Main
- Loading branch information
Showing
15 changed files
with
120 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,17 @@ jobs: | |
- name: 저장소 Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Create JSON file | ||
id: create-json | ||
uses: jsdaniell/[email protected] | ||
with: | ||
name: "kusitms-plus-firebase-adminsdk-krn6f-5ef95443a1.json" | ||
json: ${{ secrets.FIREBASE_JSON }} | ||
|
||
- name: Move JSON file to specified directory | ||
run: mv kusitms-plus-firebase-adminsdk-krn6f-5ef95443a1.json ./common-module/src/main/resources/kusitms-plus-firebase-adminsdk-krn6f-5ef95443a1.json | ||
shell: bash | ||
|
||
- name: make application yml | ||
run: | | ||
cd ./api-module/src/main/resources | ||
|
@@ -55,6 +66,8 @@ jobs: | |
key: ${{ secrets.PRIVATE_KEY }} | ||
port: ${{ secrets.SSH_PORT }} | ||
script: | | ||
touch ./docker-compose.yml | ||
echo "${{ secrets.DOCKER_COMPOSE }}" > ./docker-compose.yml | ||
sudo docker stop $(sudo docker ps -a -q) | ||
sudo docker rm -f $(sudo docker ps -qa) | ||
sudo docker pull ${{ secrets.DOCKER_IMG }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...in/java/com/koa/coremodule/notice/application/dto/fcm/SendCommentNotificationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.koa.coremodule.notice.application.dto.fcm; | ||
|
||
public record SendCommentNotificationRequest(String content, Long commentId) { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...ain/java/com/koa/coremodule/notice/application/dto/fcm/SendNoticeNotificationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.koa.coremodule.notice.application.dto.fcm; | ||
|
||
public record SendNoticeNotificationRequest(String content, Long noticeId) { | ||
|
||
} |
5 changes: 0 additions & 5 deletions
5
.../src/main/java/com/koa/coremodule/notice/application/dto/fcm/SendNotificationRequest.java
This file was deleted.
Oops, something went wrong.