0.1.14 version

- koji_tools - add support for local installation.
master 0.1.14
Eugene Zamriy 5 months ago
parent ef3fcabd4a
commit 602f9d5607
Signed by: ezamriy
GPG Key ID: 7EBF95C7DCFA496C

@ -5,6 +5,14 @@ msvsphere.ci Release Notes
.. contents:: Topics
v0.1.14
=======
Minor Changes
-------------
- koji_tools - add support for local installation.
v0.1.13
=======

@ -68,4 +68,4 @@ plugins:
strategy: {}
test: {}
vars: {}
version: 0.1.13
version: 0.1.14

@ -52,6 +52,13 @@ releases:
fragments:
- 10-handle-isolated-install.yml
release_date: '2024-04-21'
0.1.14:
changes:
minor_changes:
- koji_tools - add support for local installation.
fragments:
- 11-fix-koji-tools-local-installation.yml
release_date: '2024-04-22'
0.1.2:
objects:
role:

@ -0,0 +1,3 @@
---
minor_changes:
- koji_tools - add support for local installation.

@ -1,6 +1,6 @@
namespace: msvsphere
name: ci
version: 0.1.13
version: 0.1.14
readme: README.md
authors:
- Eugene Zamriy <ezamriy@msvsphere-os.ru>

@ -10,7 +10,7 @@
ansible.builtin.unarchive:
src: "koji-tools-{{ koji_tools_git_ref }}.tar.gz"
dest: /usr/local
remote_src: true
remote_src: "{{ ansible_connection != 'local' }}"
register: koji_tools_upload
ignore_errors: true

Loading…
Cancel
Save