Skip to content

Commit

Permalink
feat(ci): sync to codeberg and gitlab (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcchrish committed Mar 30, 2024
1 parent 418fcb2 commit f5f5fff
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/sync_remote.yml
Original file line number Diff line number Diff line change
@@ -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/*'

0 comments on commit f5f5fff

Please sign in to comment.