Commit 0d11527a authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

doc: fix version problem

parent 80de68ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ In order to include this template in your project, add the following to your `.g
```yaml
include:
  - project: 'to-be-continuous/bash'
    ref: '1.1.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-bash.yml'
```

+2 −2
Original line number Diff line number Diff line
@@ -198,7 +198,7 @@ stages:
    fi
  }

  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update bash "1.1.0"; fi
  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update bash "2.0.0"; fi
  unscope_variables

  # ENDSCRIPT
@@ -207,7 +207,7 @@ stages:
  stage: build
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "bash", "1.1.0" ]
      command: ["--service", "bash", "2.0.0" ]
  before_script:
    - *bash-scripts
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"