Skip to content
Snippets Groups Projects
.gitlab-ci.yml 469 B
---

stages:
  - build
  - release

variables:
  GIT_SUBMODULE_STRATEGY: recursive

build:
  stage: build
  script:
    - make -s infoheft
  tags:
    - docker
  artifacts:
    name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}"
    paths:
      - output/
    expire_in: 1 day

release:
  stage: release
  script:
    - make -s infoheft
  tags:
    - docker
  artifacts:
    name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}"
    paths:
      - output/
  only:
    - release

...