I have a CI/CD build pipeline. There I call Liquibase via the above command. But Liquibase takes the environment variable “user.name” for the author by default. But since this is not the user who triggered the pipeline, I would like to give the author via command line. Unfortunately this does not work with the argument “–changeSetAuthor”. Maybe I am doing something wrong.
You could reset your user.name environment variable before you call the previous command in your pipeline. Looks like you are using windows with the \ in the path so set user.name=changeauthor and then unset it after your call to the command.