Skip to content

Commit

Permalink
ci: less restrictive dispatch actions
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed May 14, 2024
1 parent fc23023 commit b194b8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:

dispatch-homebrew: # only runs on full releases
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-')
needs: [ docker, build-linux, build-mac, build-windows ]
needs: [ build-mac ]
runs-on: ubuntu-latest
steps:
- name: Extract Tag Name
Expand All @@ -222,7 +222,7 @@ jobs:
"workflow_id": "${{ github.run_id }}"
}
dispatch-linux: # always runs
needs: [ docker, build-linux, build-mac, build-windows ]
needs: [ build-linux ]
runs-on: ubuntu-latest
steps:
- name: Build Dispatch Payload
Expand Down

0 comments on commit b194b8f

Please sign in to comment.