Commit 6db1857f authored by Kostis Trantzas's avatar Kostis Trantzas
Browse files

Merge branch...

Merge branch '12-create-a-pipeline-to-build-and-publish-the-docker-image-in-gitlab-registry' into 'develop'

Resolve "Create a pipeline to build and publish the docker image in gitlab registry"

See merge request !4
parents d888fd19 29741a00
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+32 −0
Original line number Diff line number Diff line
include:
  - project: osl/code/org.etsi.osl.main
    ref: main
    file: 
      - ci-templates/default.yml
      - ci-templates/build.yml
    rules:
      - if: '$CI_COMMIT_REF_NAME == "main"'
  
  - project: osl/code/org.etsi.osl.main
    ref: develop
    file: 
      - ci-templates/default.yml
      - ci-templates/build.yml
    rules:
      - if: '$CI_COMMIT_REF_NAME == "develop"'

  - project: osl/code/org.etsi.osl.main
    ref: develop
    file: 
      - ci-templates/default.yml
      - ci-templates/build_unprotected.yml
    rules:
      - if: '$CI_COMMIT_REF_NAME != "main" && $CI_COMMIT_REF_NAME != "develop"'

angular_build:
  extends: .angular_build

docker_build:
  extends: .docker_build
  needs:
    - angular_build