Skip to content

Commit

Permalink
chore: 배포 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Aug 31, 2024
1 parent 2e8f0df commit f9fa647
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/k3s-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ jobs:
run: |
for MODULE in $(echo $CHANGED_MODULES | tr "," "\n"); do
echo "${APPLICATION_SECRET_PROPERTIES}" > ./$MODULE/src/main/resources/application-secret.properties
cp -R ./layer-api/src/main/resources/tokens ./$MODULE/src/main/resources/tokens
if [ "$MODULE" = "layer-batch" ]; then
cp -R ./layer-api/src/main/resources/tokens ./$MODULE/src/main/resources/tokens
fi
done
- name: Build Changed Modules
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public ResponseEntity<Void> deleteFormTitle(@PathVariable Long formId, @MemberId
public ResponseEntity<CustomTemplateListResponse> getCustomTemplateList(
@PageableDefault(size = 10) Pageable pageable, @PathVariable(name = "spaceId") Long spaceId,
@MemberId Long memberId) {

CustomTemplateListResponse response = formService.getCustomTemplateList(pageable, spaceId, memberId);
return new ResponseEntity<>(response, HttpStatus.OK);
}
Expand Down

0 comments on commit f9fa647

Please sign in to comment.