Skip to content

Release package

Release package #15

name: Release package
on:
workflow_dispatch:
inputs:
release-type:
description: "Release type"
required: true
type: choice
options:
- major
- minor
- patch
- premajor
- preminor
- prepatch
- prerelease
release-notes:
description: "Release notes"
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
call-workflow:
name: 'Call Workflow'
uses: "michijs/.github/.github/workflows/release-package.yml@main"
with:
release-type: ${{ github.event.inputs.release-type }}
release-notes: ${{ github.event.inputs.release-notes }}
secrets: inherit