stages: - build - deploy eleventy: stage: build image: node:lts-buster cache: key: "$CI_JOB_NAME" paths: - node_modules/ script: - yarn install - yarn build artifacts: paths: - public/ only: - main pages: stage: deploy script: - echo 'Nothing to do...' artifacts: paths: - public expire_in: 1 day only: - main