From af92a26c670b79c5a445127946adc096dc786a51 Mon Sep 17 00:00:00 2001 From: Psych0D0g Date: Tue, 19 Dec 2023 16:56:42 +0100 Subject: [PATCH] fix unneccesary quoting in arch env var --- .woodpecker/build_new_release.yaml | 8 ++++---- .woodpecker/test_changes.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.woodpecker/build_new_release.yaml b/.woodpecker/build_new_release.yaml index 5bf2355..8a41285 100644 --- a/.woodpecker/build_new_release.yaml +++ b/.woodpecker/build_new_release.yaml @@ -4,7 +4,7 @@ steps: image: golang:1.21.5 environment: - GOOS=linux - - GOARCH="amd64" + - GOARCH=amd64 commands: - mkdir ./out - go mod tidy @@ -14,7 +14,7 @@ steps: image: golang:1.21.5 environment: - GOOS=linux - - GOARCH="386" + - GOARCH=386 commands: - mkdir ./out - go mod tidy @@ -24,7 +24,7 @@ steps: image: golang:1.21.5 environment: - GOOS=linux - - GOARCH="arm64" + - GOARCH=arm64 commands: - mkdir ./out - go mod tidy @@ -34,7 +34,7 @@ steps: image: golang:1.21.5 environment: - GOOS=linux - - GOARCH="arm" + - GOARCH=arm commands: - mkdir ./out - go mod tidy diff --git a/.woodpecker/test_changes.yaml b/.woodpecker/test_changes.yaml index 6a96f7f..cf227f0 100644 --- a/.woodpecker/test_changes.yaml +++ b/.woodpecker/test_changes.yaml @@ -35,7 +35,7 @@ steps: image: golang:1.21.5 environment: - GOOS=linux - - GOARCH="amd64" + - GOARCH=amd64 commands: - mkdir ./out - go mod tidy @@ -45,7 +45,7 @@ steps: image: golang:1.21.5 environment: - GOOS=linux - - GOARCH="386" + - GOARCH=386 commands: - mkdir ./out - go mod tidy @@ -55,7 +55,7 @@ steps: image: golang:1.21.5 environment: - GOOS=linux - - GOARCH="arm64" + - GOARCH=arm64 commands: - mkdir ./out - go mod tidy @@ -65,7 +65,7 @@ steps: image: golang:1.21.5 environment: - GOOS=linux - - GOARCH="arm" + - GOARCH=arm commands: - mkdir ./out - go mod tidy