From 2b86118ad6fa5a62b75e95a3510f077d2303718f Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sun, 28 Apr 2024 05:59:59 +0000 Subject: [PATCH 1/8] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 37b5780..62ae2c7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -93,6 +93,10 @@ build: script: - 'curl -s --create-dirs "$RJW_DLL_URL" -o ../../rjw/$RIMWORLD_VERSION/Assemblies/RJW.dll' - 'dotnet build --no-restore' + artifacts: + untracked: false + when: on_success + expire_in: 3 days #tests: # stage: test From f48432d3ebb61dd7e75a08509c86ba18e1855cc1 Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sun, 28 Apr 2024 06:02:09 +0000 Subject: [PATCH 2/8] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 62ae2c7..1016ad0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -97,6 +97,8 @@ build: untracked: false when: on_success expire_in: 3 days + paths: + - / #tests: # stage: test From 479232e8b0ef9b767db3f9bc01cde76d3977d501 Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sun, 28 Apr 2024 06:07:40 +0000 Subject: [PATCH 3/8] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1016ad0..1f4a827 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -98,7 +98,7 @@ build: when: on_success expire_in: 3 days paths: - - / + - "*" #tests: # stage: test From e41f0be25169562c7e1df9161071ae710c8a1b22 Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sun, 28 Apr 2024 06:11:32 +0000 Subject: [PATCH 4/8] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1f4a827..fd328ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -99,6 +99,8 @@ build: expire_in: 3 days paths: - "*" + exclude: + - ".*" #tests: # stage: test From 6f6291b8f88b47721d04298218d78096aa98501f Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sun, 28 Apr 2024 06:16:29 +0000 Subject: [PATCH 5/8] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fd328ef..f8af6d1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -101,6 +101,7 @@ build: - "*" exclude: - ".*" + - ".*/" #tests: # stage: test From eef4121e1fe49be8918d8534557fde4caa98d94f Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sun, 28 Apr 2024 06:21:24 +0000 Subject: [PATCH 6/8] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f8af6d1..cba51f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -101,7 +101,7 @@ build: - "*" exclude: - ".*" - - ".*/" + - ".*/*" #tests: # stage: test From 6c7a9503f44bbd6d618d2add00b106d0e769c199 Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sun, 28 Apr 2024 06:25:07 +0000 Subject: [PATCH 7/8] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cba51f6..eacfaad 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -101,7 +101,7 @@ build: - "*" exclude: - ".*" - - ".*/*" + - ".*/**/*" #tests: # stage: test From 4136e131e799e71d51cc23933ee75cb66bfeffeb Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sun, 28 Apr 2024 06:31:20 +0000 Subject: [PATCH 8/8] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eacfaad..94a92bb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -98,10 +98,11 @@ build: when: on_success expire_in: 3 days paths: - - "*" + - "*" # Incluse everything exclude: - - ".*" - - ".*/**/*" + - ".*" # Exclude dot files + - ".*/**/*" # Exclude everything in the dot folders + - "Source/**/*" # Exclude everything in the Source folder #tests: # stage: test