From 852beb656c4b115cac39665d9a1409416d9f9b1d Mon Sep 17 00:00:00 2001 From: Rudi Date: Tue, 22 Feb 2022 09:56:32 -0500 Subject: [PATCH] Update Drone for other platforms --- .drone.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index b3cf9a2..4f64c15 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,14 +8,19 @@ steps: commands: - go get github.com/reujab/wallpaper - go vet -v - - go build + - GOOS="linux" go build -o SpaceFace-Linux + - GOOS="windows" go build -o SpaceFace-Win.exe + - GOOS="darwin" go build -o SpaceFace-macOS - name: gitea_release image: plugins/gitea-release settings: base_url: https://git.nightmare.haus api_key: from_secret: gitea_token - files: ./SpaceFace + files: + - ./SpaceFace-Linux + - ./SpaceFace-Win.exe + - ./SpaceFace-macOS checksum: - md5 - sha1