Merge pull request #99 from rustic-rs/release-beta4

CI: fix ssh key for beta releases
This commit is contained in:
aawsome 2022-08-01 23:09:28 +02:00 committed by GitHub
commit cc6717cdc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ jobs:
# set up git
ssh-keyscan -H github.com > ~/.ssh/known_hosts
GIT_SSH='ssh -i /github/home/.ssh/id_rsa -o UserKnownHostsFile=/github/home/.ssh/known_hosts'
GIT_SSH='ssh -i ~/.ssh/id_rsa -o UserKnownHostsFile=~/.ssh/known_hosts'
# clone the repo into our working directory
GIT_SSH_COMMAND=$GIT_SSH git clone git@github.com:/rustic-rs/rust-beta.git $WORKING_DIR