Skip to content

Commit

Permalink
scripts/gh_release.py: Do nothing if Github scheduled workflow on non…
Browse files Browse the repository at this point in the history
…-PyMuPDF/PyMuPDF repository.
  • Loading branch information
julian-smith-artifex-com committed Oct 3, 2024
1 parent 13dd9cb commit 758a77c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/gh_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
import sys
import textwrap

import test as test_py

pymupdf_dir = os.path.abspath( f'{__file__}/../..')

Expand All @@ -113,6 +114,9 @@ def main():
v = os.environ[ k]
log( f' {k}: {v!r}')

if test_py.github_workflow_unimportant():
return

valgrind = False
if len( sys.argv) == 1:
args = iter( ['build'])
Expand Down

0 comments on commit 758a77c

Please sign in to comment.