ddr-scores/.woodpecker.yml

18 lines
535 B
YAML
Raw Normal View History

2024-05-06 20:48:56 +00:00
pipeline:
build:
2024-05-06 20:49:53 +00:00
image: python:3-alpine
2024-05-06 20:48:56 +00:00
commands:
2024-05-06 20:52:42 +00:00
- apk add openssh git
2024-05-06 20:48:56 +00:00
- echo "$${SSH_SECRET_KEY}" > SSH_SECRET_KEY
- chmod 600 SSH_SECRET_KEY
- pip install poetry
2024-05-06 20:51:31 +00:00
- poetry install --no-root
2024-05-06 20:48:56 +00:00
- poetry run jupyter nbconvert --to markdown --no-input summary.ipynb
- git clone ssh://git@git.mzhang.io:2222/michael/ddr-scores.wiki.git
- cp summary.md ddr-scores.wiki/Stats.md
- (cd ddr-scores.wiki; git add . -A; git commit -m update; git push)
when:
event: push