From a3ba05b2cc86cf0c8933cf55a4c38d01de86170a Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 21 May 2020 14:56:56 -0400 Subject: [PATCH] Use latest ci-goreleaser: Go 1.14.3 and Goreleaser 1.35.0 --- .github/workflows/pipeline.yml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index d6a317edc..4e3e931f4 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -108,7 +108,7 @@ jobs: - name: Run GoReleaser - SNAPSHOT if: startsWith(github.ref, 'refs/tags/') != true - uses: docker://deluan/ci-goreleaser:1.14.1-1 + uses: docker://deluan/ci-goreleaser:1.14.3-0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -116,7 +116,7 @@ jobs: - name: Run GoReleaser - RELEASE if: startsWith(github.ref, 'refs/tags/') - uses: docker://deluan/ci-goreleaser:1.14.1-1 + uses: docker://deluan/ci-goreleaser:1.14.3-0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/Makefile b/Makefile index 546690449..548849a11 100644 --- a/Makefile +++ b/Makefile @@ -99,5 +99,5 @@ release: .PHONY: release snapshot: - docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.1-1 goreleaser release --rm-dist --skip-publish --snapshot + docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.3-0 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot