ansible-collection-famedly-.../.gitlab-ci.yml
2022-10-10 17:05:32 +02:00

36 lines
772 B
YAML

include:
- project: 'famedly/infra/templates/ci-cd'
ref: 'ansible-v2'
file: '/ansible.yml'
stages:
- test
- build
- publish
black:
stage: test
image: registry.gitlab.com/pipeline-components/black:latest
script:
- black --check --verbose -- plugins
build:
image: docker.io/alpine
stage: build
before_script:
- apk add --no-cache ansible
script:
- ansible-galaxy collection build
artifacts:
paths:
- famedly-matrix-*.tar.gz
publish:
image: docker.io/alpine
stage: publish
before_script:
- apk add --no-cache ansible
script:
- ansible-galaxy collection publish ./famedly-matrix-*.tar.gz --api-key ${ANSIBLE_GALAXY_API_TOKEN}
rules:
- if: '$CI_COMMIT_TAG && $CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+$/'