diff --git a/.github/workflows/update-homebrew.yml b/.github/workflows/update-homebrew.yml index 1980ccb..1f69bde 100644 --- a/.github/workflows/update-homebrew.yml +++ b/.github/workflows/update-homebrew.yml @@ -2,6 +2,11 @@ name: Update Homebrew tap on: workflow_dispatch: + inputs: + version: + description: "Version to bump to (e.g. 1.3.2)" + required: true + type: string release: types: [published] @@ -18,3 +23,4 @@ jobs: token: ${{ secrets.GH_PAT }} tap: woss/homebrew-tap formula: ocv + version: ${{ inputs.version || github.event.release.tag_name }} diff --git a/version.ts b/version.ts index eaaf21c..50f5160 100644 --- a/version.ts +++ b/version.ts @@ -1 +1 @@ -export const VERSION = '1.3.4'; +export const VERSION = "1.3.4";