File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,10 @@ def tmp_commitizen_project_with_gpg(tmp_commitizen_project):
4646 rf"[a-zA-Z0-9 \[\]-_]*{ os .linesep } [ ]*([0-9A-Za-z]*){ os .linesep } [{ os .linesep } a-zA-Z0-9 \[\]-_<>@]*" ,
4747 _new_key .out ,
4848 )
49+ # debug for mac github actions
50+ if platform .system ().lower () == "darwin" :
51+ print (f"MAC OS: new key created?\n { _new_key .out } \n { _new_key .err } " )
52+
4953 if _m :
5054 _key_id = _m .group (1 )
5155 print (f"Key { _key_id } found for { _signer_mail } " )
@@ -60,7 +64,7 @@ def tmp_commitizen_project_with_gpg(tmp_commitizen_project):
6064 _key_exist_macos = cmd .run ("gpg --list-secret-keys" )
6165 print (f"MACOS List keys:\n { _key_exist_macos .out } \n { _key_exist_macos .err } " )
6266
63- _key_gpg2_macos = cmd .run ("gpg2 --list-keys" )
67+ _key_gpg2_macos = cmd .run ("gpg --list-keys" )
6468 print (f"MACOS List keys:\n { _key_gpg2_macos .out } \n { _key_gpg2_macos .err } " )
6569
6670 yield tmp_commitizen_project
You can’t perform that action at this time.
0 commit comments