Skip to content

chore: release-it workflow #1

chore: release-it workflow

chore: release-it workflow #1

Workflow file for this run

name: Release and publish to npm
on:
workflow_dispatch:
inputs:
input_version:
type: choice
description: What type of release?
options:
- major
- minor
- patch
pull_request:
branches: [ "main" ]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Test inputs
run: echo "Type of release:${{ github.event.inputs.input_version }}"