18 lines
474 B
YAML
18 lines
474 B
YAML
name: Mirror to Gitea
|
|
|
|
on:
|
|
push:
|
|
delete:
|
|
|
|
jobs:
|
|
git-sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Sync to Gitea
|
|
uses: wei/git-sync@v3
|
|
with:
|
|
source_repo: "ваш-логин/ваш-репозиторий-в-github"
|
|
source_branch: "main"
|
|
destination_repo: "https://${{ secrets.GITEA_USER }}:${{ secrets.GITEA_TOKEN }}@ваша-gitea.com/логин/репозиторий.git"
|
|
destination_branch: "main"
|