ddr-scores/.woodpecker.yml
Michael Zhang 6c958cdc19
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
nbconvert
2024-05-06 15:51:31 -05:00

18 lines
No EOL
531 B
YAML

pipeline:
build:
image: python:3-alpine
commands:
- apk add openssh
- 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