1
0
Fork 0
This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
loappimage-helpers/.drone.yml

41 lines
732 B
YAML

---
kind: pipeline
name: default
steps:
- name: compile
image: python
commands:
- pip install wheel
- python setup.py bdist_wheel
- mkdir out
- cp dist/*.whl out/
when:
event: tag
- name: release
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea-deploy
base_url: https://git.sys42.eu/
files: out/*.whl
checksum:
- md5
draft: true
when:
event: tag
- name: handycopy
image: drillster/drone-rsync
settings:
hosts: deimos.sys42.eu
user: syntaxerrormmm
port: 45454
key:
from_secret: fisso-ssh-key
source: out/*.whl
target: ~/
when:
event: tag