Install Caddy role.
caddy_installation_packages
: The additional packages that should be included in the Caddy installation. (The packages can be found here: https://caddyserver.com/download)
- hosts: all
tasks:
- ansible.builtin.include_role:
name: ansible-caddy-installation
vars:
caddy_installation_packages:
- github.com/caddy-dns/digitalocean
In order to have a verioning in place and working, create leightweight tags that point to the appropriate minor release versions.
Creating a new minor release:
git tag v1
git push --tags
Replacing an already existing minor release:
git tag -d v1
git push origin :refs/tags/v1
git tag v1
git push --tags