A. Gardner
A. Gardner

Reputation: 631

Update Ansible Galaxy Page

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

Answers (3)

A. Gardner
A. Gardner

Reputation: 631

Guided by @justjais, the answer is:

  1. git tag -a v1.0 abc123 where abc123 is the commit ID.
  2. git push --tags https://github.com/YOURUSER/YOURREPO
  3. Log into galaxy.ansible.com and click the update button.

Edit: Gundalow beat me to it. Re-assigning answer (credit where it's due).

Upvotes: 0

justjais
justjais

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

Related Questions