Skip to content

Commit

Permalink
[fix][#40] CI open-api 없음 실패 로직 수정
Browse files Browse the repository at this point in the history
[fix][#40] CI open-api 없음 실패 로직 수정

[fix][#40] CI open-api 없음 실패 로직 수정

[fix][#40] CI open-api 없음 실패 로직 수정

[fix][#40] CI open-api 없음 실패 로직 수정

[fix][#40] open-api git 무시

[fix][#40] ci시 openapi 무시
  • Loading branch information
sejoon00 committed Aug 12, 2024
1 parent 7414a4a commit 3aff4ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,4 @@ jobs:
- name: build
run: |
chmod +x gradlew
./gradlew build -x test
./gradlew openapi3
./gradlew build -x test -x openapi3
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build/
!**/src/test/**/build/
/src/main/generated/

/src/main/resources/static/
/src/main/resources/static/docs/*

### STS ###
.apt_generated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import jakarta.persistence.EntityListeners;
import jakarta.persistence.MappedSuperclass;
import java.time.LocalDateTime;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
Expand All @@ -27,6 +28,7 @@ public abstract class BaseEntity {
private LocalDateTime updatedDate;

@Column(name = "deleted")
@Builder.Default
private boolean deleted = false;

}

0 comments on commit 3aff4ec

Please sign in to comment.