From c5eb558987b75c80df6a95fd95aaf397bffefbb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20St=C3=BCckler?= <moritz@bitbetter.de> Date: Thu, 11 Apr 2024 12:38:52 +0200 Subject: [PATCH] fix: workflow --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 92acdb0ae..e416b533d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ build: - unzip -o $TEMPLATE_FILENAME - rm $TEMPLATE_FILENAME # Copy all files from the template repo, except Content Markdown files (already in working dir) - - rsync -va --exclude="src/pages/**/*.md" --exclude="src/pages/**/*.mdx" --exclude="src/content/**/*.md" --exclude="src/content/**/*.mdx" --exclude="public" --exclude ".git" fcos-suite-astro-main/ . + - rsync -va --exclude="src/pages/**/*.md" --exclude="src/pages/**/*.mdx" --exclude="src/content/**/*.md" --exclude="src/content/**/*.mdx" --exclude="src/content/**/*.yaml" --exclude="src/content/**/*.yml" --exclude="public" --exclude ".git" fcos-suite-astro-main/ . - rm -rf fcos-suite-astro-main # Replacing the whole Astro config is a temporary workaround b/c Astro # currently doesn't support env variables inside of the config file. -- GitLab