From dc95798f122ae8898c668a55ae4ca1764ab242c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Irzyk?= <108666440+pawelirh@users.noreply.github.com> Date: Fri, 28 Jun 2024 13:54:36 +0200 Subject: [PATCH] Bugfix: Update release-repository.yaml (#355) --- .github/workflows/release-repository.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-repository.yaml b/.github/workflows/release-repository.yaml index d1e838bae..5675ad7b6 100644 --- a/.github/workflows/release-repository.yaml +++ b/.github/workflows/release-repository.yaml @@ -5,7 +5,7 @@ on: workflow_dispatch: inputs: release_candidate: - description: Branch name of the release candidate. + description: Branch name of the release candidate. WARNING This branch will be deleted! required: true version: description: New version (used for tag and package versioning). @@ -104,6 +104,11 @@ jobs: --title ${{ github.event.inputs.release_name }} \ --generate-notes + - name: Grant permissions + if: ${{ env.DEVEL_BRANCH != env.MAIN_BRANCH && fromJSON(inputs.automatic_mode) == true }} + run: | + sudo chmod -R ugo+rwX . + - name: Checkout to devel branch if: ${{ env.DEVEL_BRANCH != env.MAIN_BRANCH && fromJSON(inputs.automatic_mode) == true }} uses: actions/checkout@v4