diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 96254ff..63c6d3d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,11 @@ render: rules: - if: $CI_COMMIT_BRANCH == "main" changes: + # anything that is an input to the site build - "**/*.typ" + - "global/**/*" + - "post/**/*" + - build.sh script: - > printf '{ "date": "%s", "link": "%s" }\n' @@ -25,7 +29,11 @@ deploy: rules: - if: $CI_COMMIT_BRANCH == "main" changes: + # anything that is an input to the site build - "**/*.typ" + - "global/**/*" + - "post/**/*" + - build.sh needs: - render script: |
