From c90d00b005a3d6102c810db76fe492e6b9baf967 Mon Sep 17 00:00:00 2001 From: Amab Date: Sat, 21 Jan 2023 16:32:43 +0100 Subject: [PATCH] Revert "Disable Download concessions step temporarily" This reverts commit 3094902af1e902053424d7db4592a9733a909124. --- .drone.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.drone.yml b/.drone.yml index df02e6c..35dabfc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,17 +2,17 @@ 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 + - 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 - name: Download calls image: python:alpine environment: @@ -31,5 +31,5 @@ steps: base_url: https://git.cuernodehipnos.es files: ./*.tar.gz depends_on: -# - Download concessions + - Download concessions - Download calls