@@ -466,30 +466,33 @@ jobs:
466466 if : steps.commit.outcome == 'success'
467467 run : git -C KhaTools_macos tag haxe_$GITHUB_SHA
468468 - name : Push x64 binary
469- id : push1
469+ id : push_x64
470470 if : runner.arch == 'X64' && steps.commit.outcome == 'success' && steps.tag.outcome == 'success'
471471 continue-on-error : true
472472 run :
git -C KhaTools_macos push https://Kode-Robbot:[email protected] /Kode/KhaTools_macos_x64.git main --tags 473473 env :
474474 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
475475 - name : Push arm64 binary
476- id : push1
476+ id : push_arm64
477477 if : runner.arch == 'ARM64' && steps.commit.outcome == 'success' && steps.tag.outcome == 'success'
478478 continue-on-error : true
479479 run :
git -C KhaTools_macos push https://Kode-Robbot:[email protected] /Kode/KhaTools_macos_arm64.git main --tags 480480 env :
481481 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
482- - name : Pull
483- if : steps.commit.outcome == 'success' && steps.tag.outcome == 'success' && steps.push1.outcome != 'success'
482+ - name : Pull x64
483+ if : steps.commit.outcome == 'success' && steps.tag.outcome == 'success' && steps.push_x64.outcome != 'success'
484+ run : git -C KhaTools_macos pull --no-rebase
485+ - name : Pull arm64
486+ if : steps.commit.outcome == 'success' && steps.tag.outcome == 'success' && steps.push_arm64.outcome != 'success'
484487 run : git -C KhaTools_macos pull --no-rebase
485488 - name : Push x64 binary again
486- if : runner.arch == 'X64' && steps.commit.outcome == 'success' && steps.tag.outcome == 'success' && steps.push1 .outcome != 'success'
489+ if : runner.arch == 'X64' && steps.commit.outcome == 'success' && steps.tag.outcome == 'success' && steps.push_x64 .outcome != 'success'
487490 continue-on-error : true
488491 run :
git -C KhaTools_macos push https://Kode-Robbot:[email protected] /Kode/KhaTools_macos_x64.git main --tags 489492 env :
490493 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
491494 - name : Push arm64 binary again
492- if : runner.arch == 'ARM64' && steps.commit.outcome == 'success' && steps.tag.outcome == 'success' && steps.push1 .outcome != 'success'
495+ if : runner.arch == 'ARM64' && steps.commit.outcome == 'success' && steps.tag.outcome == 'success' && steps.push_arm64 .outcome != 'success'
493496 continue-on-error : true
494497 run :
git -C KhaTools_macos push https://Kode-Robbot:[email protected] /Kode/KhaTools_macos_arm64.git main --tags 495498 env :
0 commit comments