Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovdv2217 authored Jul 31, 2024
1 parent b92216b commit 2fab904
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release
on:
workflow_dispatch:
inputs:
release:
description: 'The type of semantic version change to apply to the release.'
required: true
type: choice
options:
- major
- minor
- patch
default: 'patch'
jobs:
call-auto-version-update:
uses: spotinst/devops-scripts/.github/workflows/version-update.yml@master
secrets: inherit
with:
release: ${{ inputs.release }}

0 comments on commit 2fab904

Please sign in to comment.