Skip to content

Commit

Permalink
Fix event_name
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineGautier committed Sep 13, 2023
1 parent 5de72de commit e96e846
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ jobs:
if: |
contains(matrix.os, 'latest') &&
contains(matrix.python-version, '3.9') &&
${{ github.event.name == 'push' }} &&
${{ github.ref == 'refs/heads/master' }}
github.event_name == 'push' &&
github.ref == 'refs/heads/master'
run: |
git config --global user.name $GH_USERNAME
git config --global user.email [email protected]
git config --global pull.rebase false
git pull
git add ${{ github.workspace }}/pyfunnel/lib
git diff-index --quiet HEAD || git commit -m "Add ${{ matrix.os }} binaries"
git pull
git push

0 comments on commit e96e846

Please sign in to comment.