Skip to content

rubemlrm/gh-check-last-release

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Check Last Repo action

This action get the information relative to the last release on a given repository

Inputs

owner

Required The user/organization that owns the repository.

repo

Required The repository name.

github_token

Required Github token.

Outputs

tag_name

The tag of the last release

release

release name

id

release ID

body

release body

created_at

release created at

published_at

release published at

tarball_url

release tarball url

zipball_url

release zipball url

Example usage

- id: check-release
  uses: Rubemlrm/gh-check-last-release@main
  with:
    github_token: ${{ secrets.github_token }}
    owner: "Rubemlrm"
    repo: "gh-check-last-release"