From 195f9dbafc2ad609b9d2c6288bb89f0383c6f783 Mon Sep 17 00:00:00 2001 From: JaxxMoss Date: Fri, 9 May 2025 01:18:40 +0200 Subject: [PATCH] workflow updated: permission updated to write. --- .github/workflows/windows-release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-release.yml b/.github/workflows/windows-release.yml index 69b13c2..5048c9b 100644 --- a/.github/workflows/windows-release.yml +++ b/.github/workflows/windows-release.yml @@ -5,8 +5,11 @@ on: branches: - "release/**" +permissions: + contents: write + jobs: - build-and-merge: + windows-release-build: runs-on: windows-latest steps: @@ -55,7 +58,7 @@ jobs: shell: bash run: | git add -A - git commit -m "Automated release build for version: ${{ steps.extract.outputs.version }}" || echo "No changes to commit" + git commit -m "Automated release build for version: ${{ steps.extract.outputs.version }}" git push origin ${{ github.ref }} - name: Fetch and force merge into main