project-config/playbooks/publish/openstack-artifacts-with-af...

15 lines
468 B
YAML

- hosts: all
tasks:
- name: Ensure artifacts directory exists
file:
path: '{{ zuul.executor.work_root }}/artifacts/afs-copy-test/'
state: directory
delegate_to: localhost
- name: Write a dummy artifact file
copy:
content: 'This is an artifact created by {{ zuul.change }}/{{ zuul.patchset }}'
dest: '{{ zuul.executor.work_root }}/artifacts/afs-copy-test/{{ zuul.change }}.txt'
delegate_to: localhost