mirror of
https://github.com/xHyroM/gimi.git
synced 2024-11-10 02:38:06 +01:00
26 lines
890 B
YAML
26 lines
890 B
YAML
image: alpine/latest
|
|
packages:
|
|
- git
|
|
sources:
|
|
- "https://git.sr.ht/~hyro/gimi"
|
|
secrets:
|
|
- 55691174-b52f-477c-81ea-dd32deff19b8 # github
|
|
- 3eaa5e52-e929-4822-842b-e817e0be7e39 # codeberg
|
|
tasks:
|
|
- sync: |
|
|
cd gimi
|
|
set +x
|
|
|
|
git remote add gimi-github git@github.com:xhyrom/gimi.git
|
|
ssh-keyscan github.com >> ~/.ssh/known_hosts
|
|
echo -e "Host github.com\nUser git\nIdentityFile ${HOME}/.ssh/55691174-b52f-477c-81ea-dd32deff19b8" >> ~/.ssh/config
|
|
git push -f --all gimi-github
|
|
git push -f --tags gimi-github
|
|
|
|
git remote add gimi-codeberg git@codeberg.org:xHyroM/gimi.git
|
|
ssh-keyscan codeberg.org >> ~/.ssh/known_hosts
|
|
echo -e "Host codeberg.org\nUser git\nIdentityFile ${HOME}/.ssh/3eaa5e52-e929-4822-842b-e817e0be7e39" >> ~/.ssh/config
|
|
git push -f --all gimi-codeberg
|
|
git push -f --tags gimi-codeberg
|
|
|
|
set -x
|