From 3a01364b88e5fb4a73299d568b32a014a66302db Mon Sep 17 00:00:00 2001 From: Matthew K Defenderfer <mdefende@uab.edu> Date: Thu, 3 Apr 2025 22:55:58 -0500 Subject: [PATCH] Clone in latest build instead of passing alphafold as artifact to bypass max artifact size --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0a26fe8..d50815f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,7 +33,6 @@ prep_missing_tags: - sed -e "s/REPLACE_HERE/${MISSING}/g" template-build-tags.yml > build-tags.yml artifacts: paths: - - alphafold3/ - build-tags.yml expire_in: 1 hour @@ -57,6 +56,7 @@ build_latest: script: - | apk update && apk add git + git clone https://${CI_GITHUB_USER}:${CI_GITHUB_TOKEN}@${GITHUB_URL} cd alphafold3 echo "Building main branch as latest" git checkout main -- GitLab