Skip to content
Snippets Groups Projects
Select Git revision
  • d8850f2e6cf93c8403632dbb83cad76876c25677
  • master default protected
  • 4
  • 4.3
  • 4.3.1
  • 4.3.0
  • 4.2
  • 4.2.4
  • 4.2.3
  • 4.2.2
10 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 1016 B
    include:
      - project: 'to-be-continuous/tools/gitlab-ci'
        ref: 'master'
        file: '/templates/validation.yml'
      - project: 'to-be-continuous/kicker'
        ref: 'master'
        file: '/templates/validation.yml'
      - project: 'to-be-continuous/bash'
        ref: '1.0.0'
        file: 'templates/gitlab-ci-bash.yml'
    
    stages:
      - build
      - publish
    
    variables:
      GITLAB_CI_FILES: "templates/gitlab-ci-sonar.yml"
      BASH_SHELLCHECK_FILES: "*.sh"
    
    extract-script:
      stage: .pre
      script:
        - echo "#!/bin/bash" > script.sh
        - sed -n '/BEGSCRIPT/,/ENDSCRIPT/p' "$GITLAB_CI_FILES" | sed 's/^  //' >> script.sh
        - export LC_ALL=C.UTF-8
      artifacts:
        when: always
        name: extracted template script
        expire_in: 1h
        paths:
          - script.sh
    
    release:
      image: node:12
      stage: publish
      before_script:
        - npm install -g semantic-release @semantic-release/gitlab @semantic-release/exec @semantic-release/git
      script:
        - semantic-release
      only:
        refs:
          - master
        variables:
          - $TMPL_RELEASE_ENABLED