Skip to content

Commit

Permalink
EXPERIMENTAL: Fix PR build action
Browse files Browse the repository at this point in the history
  • Loading branch information
vabold committed Mar 15, 2024
1 parent 9e44c1b commit b2afa7c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: "refs/pull/${{ github.event.number }}/merge"
if: github.event_name != 'pull_request_target'
- name: Install ninja
run: sudo apt install ninja-build
- name: Install Python
Expand Down

0 comments on commit b2afa7c

Please sign in to comment.