Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 }}.'
```