Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit b607e46

Browse files
committed
Update release-notes.yml
Update release-notes.yml
1 parent 59d21e2 commit b607e46

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release-notes.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,17 @@ jobs:
1616
id: check_release_drafter
1717
run: |
1818
has_release_drafter=$([ -f .github/release-drafter.yml ] && echo "true" || echo "false")
19-
echo ::set-output name=has_release_drafter::${has_release_drafter}
19+
echo "has_release_drafter={has_release_drafter}" >> $GITHUB_OUTPUT
2020
- name: Extract branch name
2121
id: extract_branch
22-
run: echo ::set-output name=value::${GITHUB_REF:11}
22+
run: echo "value={GITHUB_REF:11}" >> $GITHUB_OUTPUT
2323
# If it has release drafter:
2424
- uses: release-drafter/release-drafter@v5
2525
if: steps.check_release_drafter.outputs.has_release_drafter == 'true'
2626
env:
2727
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2828
with:
2929
commitish: ${{ steps.extract_branch.outputs.value }}
30-
filter-by-commitish: true
3130
# Otherwise:
3231
- name: Export Gradle Properties
3332
if: steps.check_release_drafter.outputs.has_release_drafter == 'false'

0 commit comments

Comments
 (0)