From dcc2cf25bf0866f1d01cad6ea4a56e03570611ff Mon Sep 17 00:00:00 2001 From: Jonas Kruckenberg Date: Thu, 15 Dec 2022 11:35:17 +0100 Subject: [PATCH] wip --- .github/sync-to-mirrors.sh | 2 +- .github/workflows/sync.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/sync-to-mirrors.sh b/.github/sync-to-mirrors.sh index 757e1d10..db2794f8 100755 --- a/.github/sync-to-mirrors.sh +++ b/.github/sync-to-mirrors.sh @@ -67,7 +67,7 @@ while read -r PLUGIN_NAME; do # Initialize the directory as a git repo, and set the remote git init -b "$BRANCH" . - git remote add origin "https://github.com/tauri-apps/tauri-plugin-${PLUGIN_NAME}" + git remote add origin "git@github.com:tauri-apps/tauri-plugin-${PLUGIN_NAME}.git" if [[ -n "$API_TOKEN_GITHUB" ]]; then git config --local http.https://github.com/.extraheader "AUTHORIZATION: basic $(printf "x-access-token:%s" "$API_TOKEN_GITHUB" | base64)" fi diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index b943227d..aeb76eb0 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync.yml @@ -10,7 +10,7 @@ concurrency: cancel-in-progress: true jobs: - audit-rust: + sync-to-mirrors: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3