Skip to content

Commit

Permalink
Merge pull request #2434 from vdice/ci/fix-dispatch-logic
Browse files Browse the repository at this point in the history
ci(release): fix dispatch conditional
  • Loading branch information
vdice authored Apr 5, 2024
2 parents 4a96e43 + 9bc503b commit c01b28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ jobs:
name: Dispatch spin-release event to fermyon/homebrew-tap
needs: create-gh-release
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'fermyon' }} && ${{ startsWith(github.ref, 'refs/tags/v') }}
if: github.repository_owner == 'fermyon' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
Expand Down

0 comments on commit c01b28f

Please sign in to comment.