Skip to content

Commit

Permalink
Added release action (#124)
Browse files Browse the repository at this point in the history
Co-authored-by: Francis Nijay <[email protected]>
  • Loading branch information
harishp8889 and francis-nijay authored Jan 16, 2025
1 parent dd44b6c commit bac6393
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 Cert-CSI
# 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: cert-csi'
default: 'cert-csi'
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 bac6393

Please sign in to comment.