diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..00e2e27 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,15 @@ +name: Release GoFSUtil +# 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@feature/lib-release-automation + name: Release Go Client Libraries