portainer-template/.drone.yml
Sthope ca5fa8f164
Some checks failed
continuous-integration/drone/push Build is failing
Update .drone.yml
2023-09-02 14:33:42 +02:00

25 lines
505 B
YAML

---
kind: pipeline
name: python
steps:
- name: badgie
image: python
commands:
- pip install badgie
- badgie -w README.md
- name: update-readme
image: alpine/git
environment:
USERNAME:
from_secret: user_gitea
PASSWORD:
from_secret: gitea_token
commands:
- git remote set-url origin https://$USERNAME:$PASSWORD@git.sthope.dev/sthope
- git add README.md
- git commit -m "Update README.md 🐦"
- git push origin main