A GitHub Actions equivalent to Azure DevOps Pipelines $(rev:r) revisions
The Issue In Azure DevOps Pipelines there is a feature to dynamically configure the build number e.g. at the top of a YAML build add the following to get a version in the form 1.2.25123.1 name: $(major).$(minor).$(year:YY)$(dayofyear).$(rev:r) Major & Minor are user created and managed variables Year, Dayofyear and Rev are built in Azure DevOps pre-defined variables. The first two are obviously based on the current date, the rev is the number of times a pipeline has been run on the current date. The problem is that there is no equivalent feature to name in GitHub Actions as build names/numbers are not really a thing in Actions. ...