From 5f0ad328bee90bb80cc55ea59192bf70240a3335 Mon Sep 17 00:00:00 2001 From: nadoo <287492+nadoo@users.noreply.github.com> Date: Mon, 21 Oct 2019 19:33:19 +0800 Subject: [PATCH] docs: add GITHUB_TOKEN to github action file (#1210) without it goreleaser will have no rights to publish files on github. --- www/content/actions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/content/actions.md b/www/content/actions.md index 53897c967..60709e868 100644 --- a/www/content/actions.md +++ b/www/content/actions.md @@ -32,6 +32,8 @@ jobs: with: version: latest args: release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` > For detailed intructions please follow GitHub Actions [workflow syntax][syntax].