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

https://github.com/valadas/dnn-platform-get-version

Get's the latest dnn platform release version number
https://github.com/valadas/dnn-platform-get-version

Last synced: about 1 year ago
JSON representation

Get's the latest dnn platform release version number

Awesome Lists containing this project

README

          

## Simple github action that fetches the latest offical release version of dnn.

### inputs
**owner**: the repository owner (optional), defaults to dnnsoftware.
**repo**: The repository name (optional), defaults to Dnn.Platform

### outputs
This action returns primitive outputs to represent the latest released version
* tag: string representing the latest tag
* major: number representing the major version
* minor: number representing the minor version
* patch: number representing the path version
* manifestSafeVersionString: A string that is save to use in manifest version numbers.

Example:
```
tag: "v9.6.0"
major: 9
minor: 6
patch: 0
manifestSafeVersionString: "09.06.00"
```