Skip to content
New issue

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

Fix type cast error #6889

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions release/main.bal
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ const decimal WORKFLOW_POLL_INTERVAL = 5;

configurable string token = os:getEnv(ACCESS_TOKEN_ENV);

configurable boolean releaseLibs = check os:getEnv(RELEASE_LIBS).ensureType();
configurable boolean releaseExtensions = check os:getEnv(RELASE_EXTENSIONS).ensureType();
configurable boolean releaseTools = check os:getEnv(RELEASE_TOOLS).ensureType();
configurable boolean releaseHandwrittenConnectors = check os:getEnv(RELEASE_HANDWRITTEN_CONNECTORS).ensureType();
configurable boolean releaseGeneratedConnectors = check os:getEnv(RELEASE_GENERATED_CONNECTORS).ensureType();
configurable boolean releaseLibs = check boolean:fromString(os:getEnv(RELEASE_LIBS));
configurable boolean releaseExtensions = check boolean:fromString(os:getEnv(RELASE_EXTENSIONS));
configurable boolean releaseTools = check boolean:fromString(os:getEnv(RELEASE_TOOLS));
configurable boolean releaseHandwrittenConnectors = check boolean:fromString(os:getEnv(RELEASE_HANDWRITTEN_CONNECTORS));
configurable boolean releaseGeneratedConnectors = check boolean:fromString(os:getEnv(RELEASE_GENERATED_CONNECTORS));
NipunaRanasinghe marked this conversation as resolved.
Show resolved Hide resolved

// Provide the correct workflow as a configurable variable.
configurable string workflow = ?;
Expand Down
Loading