ansible-playground/.woodpecker/.publish.yaml

30 lines
596 B
YAML

when:
branch: master
steps:
build:
image: alpine/git
commands:
- apk add ansible
- export ANSIBLE_COLLECTION=slococo/playground
- cd "$ANSIBLE_COLLECTION"
- ansible-galaxy collection build --output-path "$CI_WORKSPACE"
when:
event: tag
publish:
image: woodpeckerci/plugin-gitea-release
settings:
base_url: https://git.slc.ar
files:
- "slococo-playground-${CI_COMMIT_TAG##v}.tar.gz"
api_key:
from_secret: FORGEJO_ACCESS_TOKEN
target: master
when:
event: tag
depends_on:
- lint
- test