github_release – Interact with GitHub Releases¶
Requirements¶
The below requirements are needed on the host that executes this module.
- github3.py >= 1.0.0a3
Parameters¶
Examples¶
- name: Get latest release of a public repository
  github_release:
    user: ansible
    repo: ansible
    action: latest_release
- name: Get latest release of testuseer/testrepo
  github_release:
    token: tokenabc1234567890
    user: testuser
    repo: testrepo
    action: latest_release
- name: Get latest release of test repo using username and password. Ansible 2.4.
  github_release:
    user: testuser
    password: secret123
    repo: testrepo
    action: latest_release
- name: Create a new release
  github_release:
    token: tokenabc1234567890
    user: testuser
    repo: testrepo
    action: create_release
    tag: test
    target: master
    name: My Release
    body: Some description
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Adrian Moisey (@adrianmoisey)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
