26 lines
692 B
YAML
26 lines
692 B
YAML
name: Mirror to Gitea
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # Passe den Branch an, den du spiegeln willst
|
|
|
|
jobs:
|
|
mirror:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Schritt 1: Repo als Mirror klonen
|
|
- name: Clone repo as mirror
|
|
run: |
|
|
git clone --mirror https://github.com/Hobbabobba/keyserver.git repo
|
|
|
|
# Schritt 2: Push zum Gitea-Repo
|
|
- name: Push to Gitea
|
|
env:
|
|
GITEA_USER: ${{ secrets.GITEA_USER }}
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
run: |
|
|
cd repo
|
|
git remote set-url origin https://${GITEA_USER}:${GITEA_TOKEN}@git.nauheimtech.de/StefanMewes/keyserver.git
|
|
git push --mirror
|
|
|