We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input UseGuidedFailure does not work in OctopusDeployRelease@6. It's always true whatever input value is set.
UseGuidedFailure
OctopusDeployRelease@6
true
Also, the parameter is missing in the documentation here
- task: OctopusDeployRelease@6 displayName: Deploy My Project Release inputs: UseGuidedFailure: false # or "False" does not work.
The input parameter is defined as boolean. However, the default value is string: https://github.com/OctopusDeploy/OctoTFS/blob/main/source/tasks/Deploy/DeployV6/task.json#L77-L82
boolean
string
Also, it's being converted to boolean here: https://github.com/OctopusDeploy/OctoTFS/blob/main/source/tasks/Deploy/DeployV6/inputCommandBuilder.ts#L52
Shouldn't it be string instead?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Input
UseGuidedFailure
does not work inOctopusDeployRelease@6
.It's always
true
whatever input value is set.Also, the parameter is missing in the documentation here
The input parameter is defined as
boolean
. However, the default value isstring
: https://github.com/OctopusDeploy/OctoTFS/blob/main/source/tasks/Deploy/DeployV6/task.json#L77-L82Also, it's being converted to
boolean
here: https://github.com/OctopusDeploy/OctoTFS/blob/main/source/tasks/Deploy/DeployV6/inputCommandBuilder.ts#L52Shouldn't it be
string
instead?The text was updated successfully, but these errors were encountered: