From 36e0863cc3449240a77b54bf5122606289c714c5 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 14 Apr 2021 20:43:18 +0100 Subject: [PATCH] fix(release): add missing GITHUB_TOKEN env var --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b04d3f8..dd8aecf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,8 +31,10 @@ jobs: - uses: actions/setup-go@v2 with: go-version: 1.16 - - name: goreleaser + - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 with: version: latest args: release --rm-dist + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}