Reputation: 631
I've committed a role to galaxy.ansible.com
Now I've pushed some changes to the README files on Github.
How do I tell galaxy.ansible.com to re-read the Github repositories?
Upvotes: 0
Views: 76
Reputation: 631
Guided by @justjais, the answer is:
git tag -a v1.0 abc123
where abc123
is the commit ID.git push --tags https://github.com/YOURUSER/YOURREPO
galaxy.ansible.com
and click the update
button.Edit: Gundalow beat me to it. Re-assigning answer (credit where it's due).
Upvotes: 0
Reputation: 83
From https://github.com/Dynatrace-Adam-Gardner/easytravel-distributed/tags I don't see any tags.
You need to git push
your tag as well, see https://galaxy.ansible.com/docs/developers/workflow.html#release-process
You can see what Galaxy has imported from https://galaxy.ansible.com/my-imports?namespace=dynatrace_adam_gardner&selected=304470&page_size=10
Upvotes: 1
Reputation: 344
To take effect of changed Github repo you need to tag your Github repo with new version/tag and if the repo is linked correctly to your galaxy repo, once the tagging is done changes shall be reflected in your galaxy repo as well.
You can follow the release process for ansible-galaxy at following link: https://galaxy.ansible.com/docs/developers/workflow.html#release-process
Upvotes: 0