Skip to content

Public Release

Public Release #55

Workflow file for this run

name: Public Release
on:
workflow_dispatch:
inputs:
version:
description: 'The semantic version to use to generate a new release'
required: true
type: string
jobs:
publish-release:
runs-on: ubuntu-latest
name: Publish Release
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Generate Brew Tap
run: ./scripts/brew-recipe.sh ${{inputs.version}}
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Release ${{inputs.version}}