From b7a3fa304721e277acb34ce65e08f934b6f77600 Mon Sep 17 00:00:00 2001 From: Harish P Date: Mon, 21 Oct 2024 18:07:54 +0530 Subject: [PATCH] Added release automation Signed-off-by: Harish P --- .github/workflows/release.yaml | 15 +++++++++++++++ 1 file changed, 15 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 0000000..d41c1dd --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,15 @@ +name: Release goPowerstore +# Invocable as a reusable workflow +# Can be manually triggered +on: + workflow_call: + workflow_dispatch: + inputs: + version: + description: 'Version to release (major, minor, patch)' + required: true + default: 'none' +jobs: + csm-release: + uses: dell/common-github-actions/.github/workflows/csm-release-libs.yaml@main + name: Release Go Client Libraries