mirror of
https://github.com/xHyroM/zed-discord-presence.git
synced 2024-11-22 14:11:04 +01:00
ci: add gimi sync
This commit is contained in:
parent
94bdd3081a
commit
6b5b4459c9
1 changed files with 33 additions and 0 deletions
33
.github/workflows/gimi.yml
vendored
Normal file
33
.github/workflows/gimi.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: gimi
|
||||
on: [push, delete]
|
||||
|
||||
jobs:
|
||||
sync:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- run: |
|
||||
set +x
|
||||
|
||||
git remote add gimi-sourcehut git@git.sr.ht:~hyro/zed-discord-presence
|
||||
ssh-keyscan git.sr.ht >> ~/.ssh/known_hosts
|
||||
echo -e "$SOURCEHUT" >> ~/.ssh/gimi-sourcehut
|
||||
chmod 600 ~/.ssh/gimi-sourcehut
|
||||
echo -e "Host git.sr.ht\nUser git\nIdentityFile ${HOME}/.ssh/gimi-sourcehut" >> ~/.ssh/config
|
||||
git push -f --all gimi-sourcehut
|
||||
git push -f --tags gimi-sourcehut
|
||||
|
||||
git remote add gimi-codeberg git@codeberg.org:xHyroM/zed-discord-presence.git
|
||||
ssh-keyscan codeberg.org >> ~/.ssh/known_hosts
|
||||
echo -e "$CODEBERG" >> ~/.ssh/gimi-codeberg
|
||||
chmod 600 ~/.ssh/gimi-codeberg
|
||||
echo -e "Host codeberg.org\nUser git\nIdentityFile ${HOME}/.ssh/gimi-codeberg" >> ~/.ssh/config
|
||||
git push -f --all gimi-codeberg
|
||||
git push -f --tags gimi-codeberg
|
||||
|
||||
set -x
|
||||
env:
|
||||
SOURCEHUT: ${{ secrets.SOURCEHUT }}
|
||||
CODEBERG: ${{ secrets.CODEBERG }}
|
Loading…
Reference in a new issue