From 77af086854cc76a0b6cb5c9ca6ce72a0e4a11234 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 15 Apr 2024 18:52:05 +0200 Subject: [PATCH] Add build and publish steps --- .woodpecker.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index 1d1c8d1..a0021dd 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -11,6 +11,7 @@ steps: - ansible-lint - ansible-galaxy collection install "$ANSIBLE_COLLECTION" - ansible-playbook "$ANSIBLE_COLLECTION"/playbooks/main.yml --syntax-check + molecule: image: docker:dind commands: @@ -24,6 +25,28 @@ steps: volumes: - /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: dind: image: docker:dind