Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

publish

publish #45

Workflow file for this run

name: publish
on:
workflow_dispatch:
inputs:
kind:
description: Kind of release
default: minor
type: choice
options:
- prepatch
- patch
- preminor
- minor
- premajor
- major
required: true
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish update
uses: boywithkeyboard/taco@v0
with:
kind: ${{github.event.inputs.kind}}