docs icon indicating copy to clipboard operation
docs copied to clipboard

[build system] automatically keep rd-cli version up to date

Open gschueler opened this issue 3 years ago • 2 comments

Currently done manually

we should do this automatically.

suggest we ping the github API for packages from https://github.com/rundeck/rundeck-cli to find the latest release number

something like:

curl -H "Accept: application/vnd.github+json" \
   https://api.github.com/repos/rundeck/rundeck-cli/releases  \
   |  jq -r '.[0].tag_name' \ 
   |  sed 's/v//'

gschueler avatar Aug 18 '22 17:08 gschueler

I know we dynamically pull in the version number for the Rundeck parts. I can try to find that code and see if this can get incoroprated. I believe it's in the CircleCI process.

fdevans avatar Aug 18 '22 17:08 fdevans

will be fixed with 4.6.0 release PR

fdevans avatar Aug 19 '22 17:08 fdevans