From 5a1892d24d0f28afdc67e694270fee71093b85d5 Mon Sep 17 00:00:00 2001 From: Thisaru Guruge Date: Fri, 7 Feb 2025 10:28:08 +0530 Subject: [PATCH] Add missing workflow parameter --- .github/workflows/release_pipeline.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release_pipeline.yml b/.github/workflows/release_pipeline.yml index 82777729..a343b4d6 100644 --- a/.github/workflows/release_pipeline.yml +++ b/.github/workflows/release_pipeline.yml @@ -18,6 +18,11 @@ on: required: true default: false type: boolean + release_driver_modules: + description: 'Release Ballerina Driver Modules (ballerinax/mysql.driver, ballerinax/mssql.driver, etc.)' + required: true + default: false + type: boolean release_handwritten_connectors: description: 'Release Ballerina Handwritten Connectors (ballerinax/mongodb, ballerinax/mysql, etc.)' required: true @@ -47,6 +52,7 @@ jobs: RELEASE_LIBS: ${{ github.event.inputs.release_libs }} RELEASE_EXTENSIONS: ${{ github.event.inputs.release_extensions }} RELEASE_TOOLS: ${{ github.event.inputs.release_tools }} + RELEASE_DRIVER_MODULES: ${{ github.event.inputs.release_driver_modules }} RELEASE_HANDWRITTEN_CONNECTORS: ${{ github.event.inputs.release_handwritten_connectors }} RELEASE_GENERATED_CONNECTORS: ${{ github.event.inputs.release_generated_connectors }} BAL_CONFIG_VAR_WORKFLOW: "publish-release.yml"