Skip to content

Commit ee2a227

Browse files
committed
fix: bump deps and version
1 parent 46bc7f2 commit ee2a227

File tree

13 files changed

+154
-91
lines changed

13 files changed

+154
-91
lines changed

.github/workflows/main.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ on:
44
tags:
55
- "v*"
66
workflow_dispatch:
7+
inputs:
8+
trigger_homebrew:
9+
description: 'Trigger Homebrew update'
10+
required: true
11+
type: boolean
12+
default: false
713
env:
814
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
915
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
@@ -319,13 +325,16 @@ jobs:
319325
ghcr.io/${{ github.repository_owner }}/kftray-server:${{ github.sha }}
320326
ghcr.io/${{ github.repository_owner }}/kftray-server:${{ github.ref_name }}
321327
ghcr.io/${{ github.repository_owner }}/kftray-server:latest
322-
323328
update-homebrew:
324329
needs: [kftray-tauri]
325330
permissions:
326331
contents: write
327332
runs-on: macos-latest
328-
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-beta') && !contains(github.ref, '-alpha')
333+
if: |
334+
github.event.inputs.trigger_homebrew == 'true' &&
335+
startsWith(github.ref, 'refs/tags/v') &&
336+
!contains(github.ref, '-beta') &&
337+
!contains(github.ref, '-alpha')
329338
steps:
330339
- name: Checkout main repository
331340
uses: actions/checkout@v4
@@ -340,3 +349,4 @@ jobs:
340349
"${{ github.ref_name }}" \
341350
"hcavarsan/homebrew-kftray" \
342351
"${{ secrets.GH_PAT }}"
352+

0 commit comments

Comments
 (0)