From ee31085a51dd28ee7a8ae5aff330f87121dea68b Mon Sep 17 00:00:00 2001 From: Mark Rapson Date: Fri, 17 Jul 2026 10:21:31 +0100 Subject: [PATCH] Build Fix --- .gitea/workflows/build.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 72585a9..c417057 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -8,6 +8,8 @@ on: jobs: build: runs-on: ubuntu-latest + permissions: + contents: write env: BUILD_VERSION: ${{ github.ref_name }} steps: @@ -29,8 +31,9 @@ jobs: - name: Build Windows executable run: npm run build:win - - name: Upload artifact - uses: actions/upload-artifact@v3 + - name: Publish release + uses: softprops/action-gh-release@v3 with: - name: gSheets-Rate-Assistant-${{ github.ref_name }} - path: dist/*.exe + tag_name: ${{ github.ref_name }} + name: gSheets-Rate-Assistant ${{ github.ref_name }} + files: dist/*.exe