.gitlab-ci.yml 598 Bytes
Newer Older
Karakas's avatar
Karakas committed
1
2
3
4
5
6
# This file is a template, and might need editing before it works on your project.
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/npm.gitlab-ci.yml

Karakas's avatar
Karakas committed
7
8
9
10
11
12

image: node:latest
stages:
    - deploy
  
pages:
Karakas's avatar
Karakas committed
13
14
  stage: deploy
  script:
Karakas's avatar
Karakas committed
15
16
17
    - echo "deploy to https://transfer.hft-stuttgart.de/pages/$CI_PROJECT_PATH/"
  artifacts:
    paths:
Karakas's avatar
Karakas committed
18
      - frontend/public
Karakas's avatar
Karakas committed
19
20
  only: 
    - master
Karakas's avatar
Karakas committed
21