From 7b565f82f0cc6d6c88671596c4bf79da7b43fff9 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sun, 1 Sep 2024 15:21:05 +0200 Subject: [PATCH] bugfix: set GH_TOKEN in environment variables --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89c13c5..1350c36 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,6 +35,8 @@ jobs: run: go build -o build/ -v ./... - name: Create release with asset + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release create "${{ github.ref_name }}" \ --title "Release ${{ github.ref_name }}" \