Я пытаюсь настроить конвейер Bitbucket для выполнения конвейера SonarQube, но Bitbucket жалуется, что шаг конвейера пустой, нулевой или отсутствует.
SONAR_TOKEN определен как переменная проекта с правильным токеном.
Вот мой текущий файл bitbucket-pipeline.yml:
image: atlassian/default-image:2
clone:
depth: full
definitions:
caches:
sonar: ~/.sonar/cache
steps:
- step: &sonarcloud
name: Analyze on SonarCloud
caches:
- sonar
script:
- pipe: sonarsource/sonarcloud-scan:0.1.5
variables:
SONAR_TOKEN: ${SONAR_TOKEN}
pipelines:
branches:
'*':
- step: *sonarcloud
Есть идеи?