Skip to content

Commit

Permalink
Action to release operator (#846)
Browse files Browse the repository at this point in the history
* action to release operator

* fixed lint warning
  • Loading branch information
harishp8889 authored Jan 9, 2025
1 parent 3a70fdd commit 90e72d6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 90e72d6

Please sign in to comment.