feat(ci): sync to codeberg and gitlab (#168)
This commit is contained in:
committed by
GitHub
parent
418fcb2bd4
commit
f5f5fff4e9
25
.github/workflows/sync_remote.yml
vendored
Normal file
25
.github/workflows/sync_remote.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
name: Sync remote
|
||||||
|
|
||||||
|
on: [push, pull_request, delete]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
push:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'mcchrish/zenbones.nvim'
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Sync remote repositories
|
||||||
|
run: |
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
echo "${{ secrets.GIT_SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
|
||||||
|
chmod 600 ~/.ssh/id_rsa
|
||||||
|
# Ignore hosts keys, since we accept them as-is
|
||||||
|
git config --global core.sshCommand 'ssh -i ~/.ssh/id_rsa -o IdentitiesOnly=yes -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'
|
||||||
|
# Codeberg
|
||||||
|
git remote add codeberg git@codeberg.org:mcchris/zenbones.nvim.git
|
||||||
|
git push --tags --force --prune codeberg 'refs/remotes/origin/*:refs/heads/*'
|
||||||
|
# GitLab
|
||||||
|
git remote add gitlab git@gitlab.com:mcchris/zenbones.nvim.git
|
||||||
|
git push --tags --force --prune gitlab 'refs/remotes/origin/*:refs/heads/*'
|
||||||
Reference in New Issue
Block a user