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