Skip to content

Commit

Permalink
Bugfix: Grant permission and add warning in release workflow (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelirh authored Jun 28, 2024
1 parent 12b77cf commit 8c4cc6d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release-repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8c4cc6d

Please sign in to comment.