thebongy/thebongy/version-check
Extracts your project version and checks if a tag with the same version doesn't exist
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| file | Path to project configuration file (package.json for Nodejs, Cargo.yml for rust supported currently) | yes | — |
| tagFormat | Format string for tag, use ${version} to substitute version | no | ${version} |
| failBuild | Whether the build should fail if the version didn't change | no | true |
Outputs
| name | description |
|---|---|
| releaseVersion | The (formatted) version read from the project |
| rawVersion | The raw version read from the project configuration file |
| versionChanged | true if the version changed, false otherwise |
| releaseTags | The list of tags of the version, for use with docker |