Skip to content

Commit

Permalink
Fix branch ref in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 8, 2024
1 parent 0a94b48 commit 13871fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -82,7 +82,7 @@ jobs:
name: Trigger downstream builds
needs: [build]
# Only for pushes to default branch
if: ${{ github.event_name == 'push' && github.event.ref_name == github.event.repository.default_branch }}
if: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }}
uses: ./.github/workflows/trigger_dep_builds.yml
secrets:
token: ${{ secrets.REPO_DISPATCH }}

0 comments on commit 13871fb

Please sign in to comment.