Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blacktop/get-latest-version-action
Get LATEST version Github Action
https://github.com/blacktop/get-latest-version-action
ci-cd continuous-integration github-actions versioning
Last synced: about 1 month ago
JSON representation
Get LATEST version Github Action
- Host: GitHub
- URL: https://github.com/blacktop/get-latest-version-action
- Owner: blacktop
- License: unlicense
- Created: 2019-09-14T16:48:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-18T19:12:02.000Z (almost 5 years ago)
- Last Synced: 2024-10-16T12:32:55.192Z (2 months ago)
- Topics: ci-cd, continuous-integration, github-actions, versioning
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 7
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# get-latest-version-action
> **Github Action**
Get LATEST version by either parsing the LATEST or VERSION flat file in the root of your repo.
## Outputs
### `version`
The LATEST version.
## Example usage
```yaml
steps:
- uses: actions/checkout@v1
- name: Get LATEST version
id: latest
uses: blacktop/get-latest-version-action@v1
- name: Echo version
run: echo 'Latest version is ${{ steps.latest.outputs.version }}.'
```