From 392bdd1b94cfeb621dbe379ddec4900f2316caf1 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 3 Jan 2023 16:01:58 +0100 Subject: [PATCH] fix(ci): set release path to /source Should fix https://github.com/techknowlogick/xgo/issues/187 --- .drone.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index 58e759b18a..7ac3c7909b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -349,8 +349,8 @@ depends_on: - testing workspace: - base: /go - path: src/code.vikunja.io/api + base: /source + path: / trigger: ref: @@ -377,7 +377,7 @@ steps: event: [ push, tag, pull_request ] - name: before-static-build - image: techknowlogick/xgo:go-1.19.2 + image: techknowlogick/xgo:latest pull: true commands: - export PATH=$PATH:$GOPATH/bin @@ -386,7 +386,7 @@ steps: depends_on: [ fetch-tags, mage ] - name: static-build-windows - image: techknowlogick/xgo:go-1.19.2 + image: techknowlogick/xgo:latest pull: true environment: # This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why. @@ -399,7 +399,7 @@ steps: depends_on: [ before-static-build ] - name: static-build-linux - image: techknowlogick/xgo:go-1.19.2 + image: techknowlogick/xgo:latest pull: true environment: # This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why. @@ -412,7 +412,7 @@ steps: depends_on: [ before-static-build ] - name: static-build-darwin - image: techknowlogick/xgo:go-1.19.2 + image: techknowlogick/xgo:latest pull: true environment: # This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why. @@ -435,7 +435,7 @@ steps: - ./mage-static release:compress - name: after-build-static - image: techknowlogick/xgo:go-1.19.2 + image: techknowlogick/xgo:latest pull: true depends_on: - after-build-compress @@ -719,6 +719,6 @@ steps: - failure --- kind: signature -hmac: f3b261d9329113993cdf8ae785daee6f0b2c0ea38662d2714385d7a31f7e5b2f +hmac: f8ce17f7158088a124039f579ba10364788d306feac3feeb51689dce440d6213 ...