Skip to content

Commit d553575

Browse files
committed
Revert "Use official github tool"
This reverts commit 8378580.
1 parent 2783bcd commit d553575

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,14 @@ jobs:
7575
echo "No release found for $TAG."
7676
fi
7777
78-
- name: Create draft release
78+
- name: Create release
7979
if: ${{ steps.release_info.outputs.tag }}
80-
run: |
81-
gh release create "${{ steps.release_info.outputs.tag }}" \
82-
--title "${{ steps.release_info.outputs.tag }}" \
83-
--notes-file release_notes.txt \
84-
--draft \
85-
LICENSE
80+
uses: softprops/action-gh-release@5122b4edc95f85501a71628a57dc180a03ec7588 # v2.5.0
81+
with:
82+
tag_name: ${{ steps.release_info.outputs.tag }}
83+
name: ${{ steps.release_info.outputs.tag }}
84+
body_path: release_notes.txt
85+
draft: true
86+
files: LICENSE
8687
env:
8788
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)