Skip to content
Snippets Groups Projects
.gitlab-ci_bkp.yml 347 B
Newer Older
Emmanuel Salomon's avatar
Emmanuel Salomon committed
stages:
    - publish

.node: &node
Emmanuel Salomon's avatar
Emmanuel Salomon committed
  image: jitesoft/node-yarn:14-slim
Emmanuel Salomon's avatar
Emmanuel Salomon committed
  tags:
    - redshift

before_script:
  - yarn

cache:
  paths:
    - node_modules/

Emmanuel Salomon's avatar
Emmanuel Salomon committed
pages:
  <<: *node
  stage: publish
  script:
    - yarn generate
    - mv dist public
  artifacts:
    untracked: true
    paths:
      - public
  allow_failure: true
  only:
    - master