blob: ff5f9fd799f64380b818fb65e97fc3f7f48a76d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
image: alpine/edge
secrets:
- 5077f4a0-6a32-46e8-aa7c-5be8778d0524
sources:
- [email protected]/~a14m/ansible-distro-install
environment:
GIT_SSH_COMMAND: ssh -o StrictHostKeyChecking=no
tasks:
- setup: |
# This is for not having to cd into your <repo> for each task
echo 'cd ansible-distro-install' >> ~/.buildenv
- check: |
if [ "$(git rev-parse origin/main)" != "$(git rev-parse HEAD)" ]; then \
complete-build; \
fi
- mirror: |
git push --force --mirror [email protected]:a14m/ansible-distro-install.git
|