ddr-scores/.woodpecker.yml
Michael Zhang 681bb06797
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
git
2024-05-06 15:52:42 -05:00

18 lines
No EOL
535 B
YAML

pipeline:
build:
image: python:3-alpine
commands:
- apk add openssh git
- echo "$${SSH_SECRET_KEY}" > SSH_SECRET_KEY
- chmod 600 SSH_SECRET_KEY
- pip install poetry
- poetry install --no-root
- 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