auto-format #20

Merged
leon merged 143 commits from auto-format into main 2024-02-14 01:18:02 +01:00
Showing only changes of commit 51af462072 - Show all commits

View File

@ -115,11 +115,12 @@ steps:
- cargo fmt --all --check && echo "No formatting required, exiting early..." && exit 0 - cargo fmt --all --check && echo "No formatting required, exiting early..." && exit 0
- cargo fmt --all --verbose - cargo fmt --all --verbose
- apk add git openssh - apk add git openssh
- echo "$SSH_PRIVATE_KEY" > /tmp/ssh
- mkdir -p "$${HOME}/.ssh" - mkdir -p "$${HOME}/.ssh"
- chmod 700 "$${HOME}/.ssh"
- echo "$SSH_PRIVATE_KEY" > "$${HOME}/.ssh/git"
- echo "Host git.libre.moe" >> "$${HOME}/.ssh/config" - echo "Host git.libre.moe" >> "$${HOME}/.ssh/config"
- echo " User git" >> "$${HOME}/.ssh/config" - echo " User git" >> "$${HOME}/.ssh/config"
- echo " IdentityFile /tmp/ssh" >> "$${HOME}/.ssh/config" - echo " IdentityFile $${HOME}/.ssh/git" >> "$${HOME}/.ssh/config"
- cat "$${HOME}/.ssh/config" - cat "$${HOME}/.ssh/config"
- git config --local user.name "wanessa" - git config --local user.name "wanessa"
- git config --local user.email "$GIT_EMAIL_ADDRESS" - git config --local user.email "$GIT_EMAIL_ADDRESS"