Skip to content

Commit

Permalink
add trigger job for releasing golibs
Browse files Browse the repository at this point in the history
  • Loading branch information
khareRajshree committed Feb 10, 2025
1 parent 0093b95 commit 961d3e5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
name: Release GoPowerscale
# Invocable as a reusable workflow
# Can be manually triggered
on: # yamllint disable-line rule:truthy
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) Ex: 1.0.0'
description: "Version to release (major, minor, patch) Ex: 1.0.0"
required: true
repository_dispatch:
types: [release-go-libs]
jobs:
csm-release:
uses: dell/common-github-actions/.github/workflows/csm-release-libs.yaml@main
name: Release Go Client Libraries
with:
version: "${{ github.event.inputs.version || 'minor' }}"
secrets: inherit

0 comments on commit 961d3e5

Please sign in to comment.