GHP publish

This commit is contained in:
ace
2021-01-09 21:06:20 +03:00
commit 380dbf855f
68 changed files with 10903 additions and 0 deletions

21
build.yaml Normal file
View File

@ -0,0 +1,21 @@
- hosts: localhost
connection: local
tasks:
- name: Find all dirs
find:
paths: .
file_type: directory
recurse: false
register: dirs
- debug:
msg: "{{ item.path }}"
loop: "{{ dirs.files }}"
- name: Build image
community.general.make:
chdir: "{{ item }}"
target: "{{ target | default('all') }}"
params:
REGISTRY: "{{ registry | default('registry.0xace.cc') }}"
loop: "{{ dirs.files | map(attribute='path') | list }}"