Skip to content

cd: create GH Actions workflow to prepare release on dispatch #3

cd: create GH Actions workflow to prepare release on dispatch

cd: create GH Actions workflow to prepare release on dispatch #3

Workflow file for this run

name: prepare-release
on:
workflow_dispatch:
inputs:
release:
description: Type of release
required: true
type: choice
options:
- patch
- minor
- major
default: patch
push:
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- run: >
pwd
- run: >
echo "The release type should be ${{ inputs.release }}"