mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
trigger orbit build on version bump (#14315)
The [goreleaser-orbit.yaml](https://github.com/fleetdm/fleet/actions/workflows/goreleaser-orbit.yaml) workflow tends to timeout up to 9-10 times before successfully building a macOS binary. We have been using this workflow as a back-up, but it requires doing the version bump and manually triggering the workflow, which can be error prone. This change follows the `workflows/generate-desktop-targets.yml` to trigger the workflow when the workflow file itself is modified.
This commit is contained in:
parent
ee02782eaf
commit
641856c1dc
1 changed files with 6 additions and 0 deletions
6
.github/workflows/build-orbit.yaml
vendored
6
.github/workflows/build-orbit.yaml
vendored
|
|
@ -2,9 +2,15 @@ name: Build, Sign and Notarize Orbit for macOS
|
|||
|
||||
on:
|
||||
workflow_dispatch: # allow manual action
|
||||
push:
|
||||
paths:
|
||||
# The workflow can be triggered by modifying ORBIT_VERSION env.
|
||||
- '.github/workflows/build-orbit.yaml'
|
||||
pull_request:
|
||||
paths:
|
||||
- 'orbit/**.go'
|
||||
# The workflow can be triggered by modifying ORBIT_VERSION env.
|
||||
- '.github/workflows/build-orbit.yaml'
|
||||
|
||||
env:
|
||||
ORBIT_VERSION: 1.17.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue