15 lines
335 B
YAML
15 lines
335 B
YAML
image: alpine/latest
|
|
packages:
|
|
- git
|
|
- openssh
|
|
secrets:
|
|
- 0639564d-6995-4e2e-844b-2f8feb0b7fb1
|
|
environment:
|
|
repo: autoyadm
|
|
github: git@github.com:ficcdaf/autoyadm.git
|
|
tasks:
|
|
- mirror: |
|
|
ssh-keyscan github.com >> ~/.ssh/known_hosts
|
|
cd "$repo"
|
|
git remote add github "$github"
|
|
git push --mirror github
|