mirror of
https://github.com/aclist/dztui.git
synced 2024-12-30 14:12:04 +01:00
19 lines
421 B
YAML
19 lines
421 B
YAML
|
name: Mirror to Codeberg
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
mirror-to-codeberg:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- uses: pixta-dev/repository-mirroring-action@v1
|
||
|
if: ${{ vars.GIT_REMOTE != '' }}
|
||
|
with:
|
||
|
target_repo_url: ${{ vars.GIT_REMOTE }}
|
||
|
ssh_private_key: ${{ secrets.GIT_SSH_PRIVATE_KEY }}
|