From 673fbbd6590992e70b51ac86374bcc9f96765250 Mon Sep 17 00:00:00 2001 From: Layla Manley Date: Thu, 7 Dec 2023 22:03:51 +0100 Subject: [PATCH] ci work --- .drone.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.drone.yaml b/.drone.yaml index ecaa3ed..fef1c2f 100644 --- a/.drone.yaml +++ b/.drone.yaml @@ -4,17 +4,18 @@ type: docker name: Build and Release steps: - - name: test + - name: setup taskfile image: golang:1.21 commands: - sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d + - name: test + image: golang:1.21 + commands: - ./bin/task test - name: build & package image: golang:1.21 commands: - - | - sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d - ./bin/task package + - ./bin/task package when: event: - tag