Skip to content

Commit

Permalink
fix test for github actions
Browse files Browse the repository at this point in the history
am I too tired or what ;)
  • Loading branch information
schlimmchen committed Sep 5, 2024
1 parent b27a2ee commit 962f672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pio-scripts/compile_webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def check_files(directory, hash_file):
pickle.dump(file_hashes, f)

def main():
if os.getenv('GITHUB_ACTIONS') != 'true':
if os.getenv('GITHUB_ACTIONS') == 'true':
print("INFO: not testing for up-to-date webapp artifacts when running as Github action")
return 0

Expand Down

0 comments on commit 962f672

Please sign in to comment.