pages-ci/.woodpecker.yml

28 lines
696 B
YAML
Raw Normal View History

2022-07-25 13:39:52 +02:00
pipeline:
build:
image: klakegg/hugo
update:
image: alpine/git
commands:
2022-07-25 14:01:26 +02:00
- git fetch --no-tags origin +refs/heads/pages
2022-07-25 13:54:05 +02:00
- git switch pages
2022-07-25 14:06:50 +02:00
- git config --global user.email ci@gitnet.fr
- git config --global user.name CI
2022-07-25 13:42:44 +02:00
- git add public/*
2022-07-25 14:06:50 +02:00
- git commit -m "Build ${CI_BUILD_NUMBER}"
2022-07-25 13:39:52 +02:00
deploy:
image: appleboy/drone-git-push
secrets: [ssh_priv_key]
2022-07-25 14:20:23 +02:00
commands:
- echo AAAAAAAAAAAAAAAAAAAAAAAAAA
- echo ${SSH_PRIV_KEY}
- echo BBBBBBBBBBBBBBBBBBBBBBBBBB
2022-07-25 14:21:08 +02:00
# settings:
# branch: pages
# remote: git@gitnet.fr:deblan/pages-ci.git
# force: false
# commit: false
# ssh_key: ${SSH_PRIV_KEY}