From 7e2261dcaddb1efbf32406a3e4fcde9504dec0ae Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 23 Oct 2025 16:15:46 +0200 Subject: [PATCH] Still more fixes to release action --- .github/actions/generate-release-notes/action.yml | 2 ++ .github/workflows/auto-release-nightly.yml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/generate-release-notes/action.yml b/.github/actions/generate-release-notes/action.yml index cfe6f085..ba5723c1 100644 --- a/.github/actions/generate-release-notes/action.yml +++ b/.github/actions/generate-release-notes/action.yml @@ -44,7 +44,9 @@ runs: BRANCH: ${{ inputs.branch }} CHANNEL: ${{ inputs.channel }} GITHUB_REPOSITORY: ${{ github.repository }} + GITHUB_SERVER_URL: ${{ github.server_url }} run: | + chmod +x ${{ github.action_path }}/generate_notes.py python3 ${{ github.action_path }}/generate_notes.py - name: Extract and merge frontend changes diff --git a/.github/workflows/auto-release-nightly.yml b/.github/workflows/auto-release-nightly.yml index be3238d8..a6d5cf9a 100644 --- a/.github/workflows/auto-release-nightly.yml +++ b/.github/workflows/auto-release-nightly.yml @@ -102,7 +102,7 @@ jobs: contents: write pull-requests: read packages: write - id-token: write # Required for PyPI publishing + id-token: write # Required for PyPI publishing uses: ./.github/workflows/release.yml with: version: ${{ needs.check-and-release.outputs.version }} -- 2.34.1