subvenciones/.drone.yml

36 lines
825 B
YAML
Raw Normal View History

2023-01-21 12:27:26 +01:00
kind: pipeline
name: default
steps:
- name: Download concessions
image: python:alpine
environment:
COOKIE:
from_secret: cookie
commands:
- apk update && apk add wget jq tar gzip bash util-linux
- pip3 install csvkit
- cd scripts
- chmod +x ./*.sh
- ./concessions.sh
2023-01-21 14:07:21 +01:00
- name: Download calls
image: python:alpine
environment:
COOKIE:
from_secret: cookie
commands:
- apk update && apk add wget jq tar gzip bash util-linux
- cd scripts
- chmod +x ./*.sh
- ./calls.sh
- name: Release data
2023-01-21 12:27:26 +01:00
image: plugins/gitea-release
2023-01-21 13:10:13 +01:00
settings:
2023-01-21 12:27:26 +01:00
api_key:
from_secret: api_key
base_url: https://git.cuernodehipnos.es
2023-01-21 14:07:21 +01:00
files: ./*.tar.gz
2023-01-21 14:13:10 +01:00
depends_on:
- Download concessions
2023-01-21 14:13:10 +01:00
- Download calls