From 59f1d7e88a92979773ce0135782c8e2fc527d3f8 Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 10 Sep 2020 16:24:39 -0400 Subject: [PATCH] Use new ci-goreleaser, to fix generating Linux binaries for old kernels --- .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 246a20f8..438ce585 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.7-2-taglib + uses: docker://deluan/ci-goreleaser:1.14.9-1 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.7-2-taglib + uses: docker://deluan/ci-goreleaser:1.14.9-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/Makefile b/Makefile index 438a6a2c..7202e332 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.7-2-taglib goreleaser release --rm-dist --skip-publish --snapshot + docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.9-1 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot