Add build and publish steps
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Santiago Lo Coco 2024-04-15 18:52:05 +02:00
parent d2b3fcff28
commit 77af086854
1 changed files with 23 additions and 0 deletions

View File

@ -11,6 +11,7 @@ steps:
- ansible-lint - ansible-lint
- ansible-galaxy collection install "$ANSIBLE_COLLECTION" - ansible-galaxy collection install "$ANSIBLE_COLLECTION"
- ansible-playbook "$ANSIBLE_COLLECTION"/playbooks/main.yml --syntax-check - ansible-playbook "$ANSIBLE_COLLECTION"/playbooks/main.yml --syntax-check
molecule: molecule:
image: docker:dind image: docker:dind
commands: commands:
@ -24,6 +25,28 @@ steps:
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
build:
image: alpine/git
commands:
- apk add ansible
- export ANSIBLE_COLLECTION=slococo/playground
- cd "$ANSIBLE_COLLECTION"
- ansible-galaxy collection build
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
services: services:
dind: dind:
image: docker:dind image: docker:dind