Skip to content

Commit

Permalink
Added release workflow (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
harishp8889 authored Dec 18, 2024
1 parent b8062f5 commit b4f7dac
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 CSI-Powerflex
# Invocable as a reusable workflow
# Can be manually triggered
on: # yamllint disable-line rule:truthy

Check warning on line 4 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / Golang Validation / Yaml Lint

4:5 [comments] too few spaces before comment
workflow_call:
workflow_dispatch:
inputs:
version:
description: 'Version to release (major, minor, patch), Example: 1.x.x'
required: true
image:
description: 'Image name. Example: csi-powerflex'
default: 'csi-powerflex'
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 b4f7dac

Please sign in to comment.