Skip to content

Commit

Permalink
cd: create GH Actions workflow to prepare release on dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-seifert committed Jan 2, 2024
1 parent 4a18372 commit 335cc45
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Prepare release

on:
workflow_dispatch:
inputs:
release:
description: Type of release
required: true
type: choice
options:
- patch
- minor
- major
default: patch

jobs:
prepare:
runs-on: ubuntu-latest
steps:
- run: >
echo "The release type should be ${{ inputs.release }}"

0 comments on commit 335cc45

Please sign in to comment.