From 532833ac7cfee63fcf84e519a2946502aa1bcf99 Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 10 Sep 2020 17:02:52 -0400 Subject: [PATCH] Fix ci-goreleaser --- .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 438ce585..b59da65c 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -115,7 +115,7 @@ jobs: - name: Run GoReleaser - SNAPSHOT if: startsWith(github.ref, 'refs/tags/') != true - uses: docker://deluan/ci-goreleaser:1.14.9-1 + uses: docker://deluan/ci-goreleaser:1.14.9-2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -123,7 +123,7 @@ jobs: - name: Run GoReleaser - RELEASE if: startsWith(github.ref, 'refs/tags/') - uses: docker://deluan/ci-goreleaser:1.14.9-1 + uses: docker://deluan/ci-goreleaser:1.14.9-2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/Makefile b/Makefile index 7202e332..e781c06c 100644 --- a/Makefile +++ b/Makefile @@ -96,5 +96,5 @@ release: .PHONY: release snapshot: - docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.9-1 goreleaser release --rm-dist --skip-publish --snapshot + docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.9-2 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot