rm extra whitespace in CircleCI config

This commit is contained in:
AJ Bahnken 2022-02-24 14:13:20 -08:00
Родитель dc2267e372
Коммит 076f295394
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C20D4189857FAD4E
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -4,10 +4,10 @@ workflows:
build-and-deploy:
jobs:
- build
- push:
- push:
filters:
tags:
only: /^v.*/
only: /^v.*/
branches:
ignore: /.*/
jobs:
@ -30,7 +30,7 @@ jobs:
resource_class: large
steps:
- checkout
- run:
- run:
name: semver check
command: |
MAJOR=$(echo ${CIRCLE_TAG#v} | cut -d"." -f1)
@ -46,8 +46,8 @@ jobs:
This job uses the semver from the git TAG as the public version to publish.
- This should only run on workflows triggered by a tag.
- The tag name should be a semver like 'v1.2.3'
- This should only run on workflows triggered by a tag.
- The tag name should be a semver like 'v1.2.3'
- The version should follow conventions documented at https://github.com/fsaintjacques/semver-tool
EOF
exit 1