This commit is contained in:
Jonas Kruckenberg
2022-12-15 11:35:17 +01:00
parent aaeeb0f4fa
commit dcc2cf25bf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: true
jobs:
audit-rust:
sync-to-mirrors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3