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

Commit

Permalink
ci: use taco
Browse files Browse the repository at this point in the history
  • Loading branch information
boywithkeyboard committed Jul 16, 2023
1 parent ae5a2e7 commit 18c88ca
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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}}

0 comments on commit 18c88ca

Please sign in to comment.