arcalot / arcaflow-engine

Arcaflow is a highly-portable workflow engine enabling modular and validated pipelines through containerized plugins.
https://arcalot.io/arcaflow/
Apache License 2.0
6 stars 9 forks source link

Fix and Update CI Regular Expression #116

Closed mfleader closed 8 months ago

mfleader commented 8 months ago

Changes introduced with this PR

Update the version format regular expression to include potential pre-release and/or build identifiers as in the semantic versioning 2.0.0 specification.

<valid semver> ::= <version core>
                 | <version core> "-" <pre-release>
                 | <version core> "+" <build>
                 | <version core> "-" <pre-release> "+" <build>

<version core> ::= <major> "." <minor> "." <patch>

By contributing to this repository, I agree to the contribution guidelines.