Skip to content
Snippets Groups Projects
Forked from R3 / school / courses
1078 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 470 B
image: digitallyseamless/nodejs-bower-grunt

pages:
  stage: deploy-stable
  only:
    - master
  script:
    - npm install -g npm@latest yo grunt-cli generator-reveal bower
    - npm install
    - grunt dist

  artifacts:
    paths:
      - public/stable

pages:
  stage: deploy-unstable
  only:
    - develop
  script:
    - npm install -g npm@latest yo grunt-cli generator-reveal bower
    - npm install
    - grunt dist

  artifacts:
    paths:
      - public/latest