From 13bdf0c79fd1fc802f06dc045ce4e042c1cd0786 Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Thu, 29 May 2025 21:13:50 +0200 Subject: [PATCH 1/2] Update REMOTE_ENV_PATH and rules in GitLab CI config --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7f18eab..646ed8d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -43,7 +43,7 @@ deploy_dev: extends: .deploy-template variables: TAG: dev - REMOTE_ENV_PATH: /rheinsw/dev + REMOTE_ENV_PATH: /rheinsw rules: - if: '$CI_COMMIT_BRANCH == "dev" || $CI_COMMIT_BRANCH == "pipeline"' @@ -51,6 +51,5 @@ deploy_prod: extends: .deploy-template variables: TAG: production - REMOTE_ENV_PATH: /rheinsw/prod - rules: - - if: '$CI_COMMIT_BRANCH == "production"' \ No newline at end of file + REMOTE_ENV_PATH: /rheinsw + rules: *deploy_production_rule \ No newline at end of file -- 2.39.5 From 5e2e742151e2c7c27c5b238ec64ee2bbc045612e Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Fri, 30 May 2025 05:33:51 +0200 Subject: [PATCH 2/2] test --- .../src/main/java/dev/rheinsw/shared/entity/BaseEntity.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/common/src/main/java/dev/rheinsw/shared/entity/BaseEntity.java b/backend/common/src/main/java/dev/rheinsw/shared/entity/BaseEntity.java index f0ee6cf..4e676b0 100644 --- a/backend/common/src/main/java/dev/rheinsw/shared/entity/BaseEntity.java +++ b/backend/common/src/main/java/dev/rheinsw/shared/entity/BaseEntity.java @@ -10,10 +10,11 @@ import lombok.Setter; import java.time.LocalDateTime; /** + * Base Entity + * * @author Thatsaphorn Atchariyaphap * @since 26.04.25 */ - @Getter @Setter @MappedSuperclass -- 2.39.5