Skip to content
Snippets Groups Projects
.gitlab-ci.yml 537 B
Newer Older
Griefed's avatar
Griefed committed
  - test
  image: griefed/gitlab-ci-cd:2.0.6
  stage: test
  cache:
    paths:
      - node_modules/
  before_script:
    - npm install
    - rm -Rf dist
  script:
    - quasar build

pages:
  image: griefed/gitlab-ci-cd:2.0.6
Griefed's avatar
Griefed committed
  stage: docs
  cache:
    paths:
      - node_modules/
  before_script:
    - npm install
    - rm -Rf dist
  script:
    - quasar build
    - cp -Rf dist/spa/* public/
  rules:
    - if: '$CI_COMMIT_BRANCH == "main"'
Griefed's avatar
Griefed committed
  artifacts:
    paths:
      - public
    expire_in: 1 week