Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/razonyang/github-action-github-latest-release
- Owner: razonyang
- License: mit
- Created: 2024-06-26T01:58:14.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-26T05:53:18.000Z (5 months ago)
- Last Synced: 2024-10-28T05:57:07.697Z (16 days ago)
- Topics: github-action, latest-release
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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 }}
```