-
-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (32 loc) · 1.26 KB
/
gimi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: gimi
on: [push, delete]
jobs:
sync:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
if: github.event_name != 'pull_request'
with:
fetch-depth: 0
- if: github.event_name != 'pull_request'
run: |
set +x
mkdir ~/.ssh -p
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 }}