.profile/.woodpecker.yml
Simon Vieille fa59805288
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/deployment/woodpecker Pipeline was successful
ci/woodpecker/cron/woodpecker Pipeline was successful
update ci
2023-08-07 16:54:19 +02:00

35 lines
1 KiB
YAML

steps:
update_profile:
image: alpine/git
secrets: [ssh_priv_key]
commands:
- git config --global user.email ci@gitnet.fr
- git config --global user.name CI
- apk add wget
- cp README.tpl.md README.md
- ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md
- git status
- git add .
- git commit -m "Build ${CI_BUILD_NUMBER}" || true
- mkdir -p ~/.ssh
- eval $(ssh-agent -s)
- echo "$SSH_PRIV_KEY" | tr -d '\r' | ssh-add -
- 'echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- git remote add repo git@gitnet.fr:deblan/.profile.git
- git push repo main || true
when:
event: [deployment, cron]
# deploy:
# image: appleboy/drone-git-push
# commands:
# settings:
# branch: main
# remote: git@gitnet.fr:deblan/.profile.git
# force: false
# commit: false
# ssh_key:
# from_secret: ssh_priv_key
# when:
# event: [push, deployment, cron]