Skip to content

Commit

Permalink
sum
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Aug 5, 2024
1 parent 0b76de5 commit 046c043
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/versionCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ jobs:
if sourceVersion != mergeVersion :
message = "ERROR : Source version {} does not match target version {}. Did you choose the wrong target branch?\n".format(
message = "Source version {} does not match target version {}. Did you choose the wrong target branch?\n".format(
".".join( str( v ) for v in sourceVersion ),
".".join( str( v ) for v in mergeVersion )
)
sys.stderr.write( message )
sys.stderr.write( f"FAIL : {message}" )
with open( os.environ["GITHUB_STEP_SUMMARY"], "a" ) as summary :
summary.write( message )
summary.write( f"> [!CAUTION]\n> {message}" )
sys.exit( 1 )
Expand Down

0 comments on commit 046c043

Please sign in to comment.