From 26cd0e3ef10bd4264b51ed626890620af0009d5f Mon Sep 17 00:00:00 2001 From: Harish P Date: Tue, 7 Jan 2025 17:17:38 +0530 Subject: [PATCH 1/2] action to release operator --- .github/workflows/release.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..5b4ab81e --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,22 @@ +name: Release CSM-Operator +# Invocable as a reusable workflow +# Can be manually triggered +on: # yamllint disable-line rule:truthy + workflow_call: + workflow_dispatch: + inputs: + version: + description: 'Version to release (major, minor, patch), Example: 1.x.x' + required: true + image: + description: 'Image name. Example: dell-csm-operator' + default: 'dell-csm-operator' + required: true +jobs: + csm-release: + uses: dell/common-github-actions/.github/workflows/csm-release-driver-module.yaml@main + name: Release CSM Drivers and Modules + with: + version: ${{ github.event.inputs.version }} + image: ${{ github.event.inputs.image }} + secrets: inherit From a3852700f85b65a5f947b4952623fe28b7886cec Mon Sep 17 00:00:00 2001 From: Harish P Date: Thu, 9 Jan 2025 21:03:58 +0530 Subject: [PATCH 2/2] fixed lint warning --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5b4ab81e..1fd902c0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,7 +1,7 @@ name: Release CSM-Operator # Invocable as a reusable workflow # Can be manually triggered -on: # yamllint disable-line rule:truthy +on: # yamllint disable-line rule:truthy workflow_call: workflow_dispatch: inputs: