Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/razonyang/github-action-github-latest-release

GitHub Action to fetch latest GitHub repository release
https://github.com/razonyang/github-action-github-latest-release

github-action latest-release

Last synced: 14 days ago
JSON representation

GitHub Action to fetch latest GitHub repository release

Awesome Lists containing this project

README

        

# GitHub Latest Release Action

## Usage

```yaml
on: [push]

jobs:
github_latest_release_job:
runs-on: ubuntu-latest
steps:
- id: release # used to read version in other steps.
uses: razonyang/github-action-github-latest-release@v1
with:
owner: razonyang
name: foo-bar-fizz-buzz
# prefix: v # remove prefix from version if present.
- run: echo ${{ steps.release.outputs.version }}
```