Skip to content

Commit 9aac1e7

Browse files
authored
Update release-notes.yml (#13254)
Remove deprecated `set-output` command is which will be disabled soon.
1 parent 4793af6 commit 9aac1e7

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/release-notes.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id: check_release_drafter
1818
run: |
1919
has_release_drafter=$([ -f .github/release-drafter.yml ] && echo "true" || echo "false")
20-
echo ::set-output name=has_release_drafter::${has_release_drafter}
20+
echo "has_release_drafter=${has_release_drafter}" >> $GITHUB_OUTPUT
2121
2222
# If it has release drafter:
2323
- uses: release-drafter/[email protected]
@@ -26,12 +26,7 @@ jobs:
2626
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2727
with:
2828
prerelease: false
29-
commitish: 4.0.x
30-
filter-by-commitish: true
3129
# Otherwise:
32-
- name: Export Gradle Properties
33-
if: steps.check_release_drafter.outputs.has_release_drafter == 'false'
34-
uses: micronaut-projects/github-actions/export-gradle-properties@master
3530
- uses: micronaut-projects/github-actions/release-notes@master
3631
if: steps.check_release_drafter.outputs.has_release_drafter == 'false'
3732
id: release_notes

0 commit comments

Comments
 (0)