From 805867afa516545259cc05d90a5ee518e70dd74a Mon Sep 17 00:00:00 2001 From: Antoine Stevan <44101798+amtoine@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:14:43 +0100 Subject: [PATCH] push with SSH (#89) to give (hopefully) push acces to the CI. --- .github/actions/sync_action/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/sync_action/action.yml b/.github/actions/sync_action/action.yml index a19d6dd5..fcdeb8f6 100644 --- a/.github/actions/sync_action/action.yml +++ b/.github/actions/sync_action/action.yml @@ -48,7 +48,9 @@ runs: working-directory: /tmp/nu-git-manager - name: "Push to remote" - run: git push origin nightly + run: | + git remote set-url origin git@github.com:amtoine/nu-git-manager.git + git push origin nightly shell: bash working-directory: /tmp/nu-git-manager if: ${{ inputs.do_push == 'true' && !env.ACT }}