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
- Host: GitHub
- URL: https://github.com/valadas/dnn-platform-get-version
- Owner: valadas
- License: mit
- Created: 2020-05-03T22:36:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-18T19:27:06.000Z (almost 4 years ago)
- Last Synced: 2025-02-19T18:40:50.164Z (over 1 year ago)
- Language: TypeScript
- Size: 25.3 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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"
```