From 9af491064e275b85e815c187183af7fbd211e9c3 Mon Sep 17 00:00:00 2001 From: phluxjr Date: Sat, 7 Mar 2026 15:07:57 -0600 Subject: [PATCH] fix duplicate upload step --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3732f63..4ada99c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,9 @@ on: release: types: [created] +permissions: + contents: write + jobs: build: strategy: @@ -36,3 +39,5 @@ jobs: uses: softprops/action-gh-release@v2 with: files: dist/${{ matrix.output }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}