aoc/.woodpecker.yml

24 lines
646 B
YAML
Raw Permalink Normal View History

2022-12-03 22:12:46 -05:00
---
branches: main
pipeline:
main:
image: alpine:3
when:
event: push
branch: main
2023-05-10 14:14:47 -04:00
secrets: [ gpg_keyfile ]
2022-12-03 22:12:46 -05:00
commands:
2023-05-10 14:14:47 -04:00
- apk add --no-cache git-crypt python3 poetry just
- echo "$GPG_KEYFILE" | base64 -d > tmp
- git-crypt unlock tmp
- rm tmp
- echo "===== 2015 ====="
- cd 2015
2022-12-03 22:12:46 -05:00
- poetry install --no-interaction --no-root
- just
2023-05-10 14:14:47 -04:00
- cd ..
# - echo "===== 2022 ====="
# - cd 2022
# - poetry install --no-interaction --no-root
# - just