Skip to content

Commit

Permalink
Fixed workflow configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetbehl committed Dec 18, 2023
1 parent bdc5808 commit 8da4263
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
echo "has_release_drafter=${has_release_drafter}" >> $GITHUB_OUTPUT
- name: Extract branch name
id: extract_branch
run: echo "value=${{GITHUB_REF:11}}" >> $GITHUB_OUTPUT
run: echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT
# If it has release drafter:
- uses: release-drafter/release-drafter@v5
if: steps.check_release_drafter.outputs.has_release_drafter == 'true'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
id: release_version
run: |
echo "Update grailsVersion to ${{steps.release_version.outputs.value}}"
sed -i "s/^grailsVersion.*$/grailsVersion\=${{GITHUB_REF:11}}/" gradle.properties
echo "value=${{GITHUB_REF:11}}" >> $GITHUB_OUTPUT
sed -i "s/^grailsVersion.*$/grailsVersion\=${GITHUB_REF:11}/" gradle.properties
echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT
- uses: stefanzweifel/[email protected]
with:
commit_message: Update grailsVersion to ${{ steps.release_version.outputs.value }}
Expand Down

0 comments on commit 8da4263

Please sign in to comment.