Skip to content

Release Package

Release Package #14

Workflow file for this run

name: Release Package
on:
workflow_dispatch:
inputs:
increment:
description: "Version increment type"
type: choice
required: true
default: "patch"
options:
- "major"
- "minor"
- "patch"
- "prerelease"
jobs:
build-and-publish:
uses: ./.github/workflows/build-and-publish.yml
with:
increment: ${{ github.event.inputs.increment }}
secrets: inherit