From cba7ddf5d6ffd3288f9fd8d2e6d6e1cbe92aebc4 Mon Sep 17 00:00:00 2001 From: "D.L." <140229250+deutschich@users.noreply.github.com> Date: Sun, 11 Jan 2026 14:36:41 +0100 Subject: [PATCH] Update GitHub Actions workflow for release tagging --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d065c0..cc97303 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,8 @@ on: jobs: release: runs-on: ubuntu-latest + permissions: + contents: write steps: - uses: actions/checkout@v4 @@ -28,8 +30,8 @@ jobs: - name: GitHub Release erstellen uses: softprops/action-gh-release@v2 with: - tag_name: v${{ steps.version.outputs.version }} - name: CheapMC v${{ steps.version.outputs.version }} + tag_name: ${{ steps.version.outputs.version }} + name: CheapMC ${{ steps.version.outputs.version }} files: CheapMC-${{ steps.version.outputs.version }}.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}