File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -107,19 +107,13 @@ jobs:
107
107
id : preflight
108
108
run : ./.github/scripts/publish_preflight_check.sh
109
109
110
- # We pull this action from a custom fork of a contributor until
111
- # https://github.com/actions/create-release/pull/32 is merged. Also note that v1 of
112
- # this action does not support the "body" parameter.
110
+ # See: https://cli.github.com/manual/gh_release_create
113
111
- name : Create release tag
114
- uses : fleskesvor/create-release@1a72e235c178bf2ae6c51a8ae36febc24568c5fe
115
112
env :
116
113
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
117
- with :
118
- tag_name : ${{ steps.preflight.outputs.version }}
119
- release_name : Firebase Admin Python SDK ${{ steps.preflight.outputs.version }}
120
- body : ${{ steps.preflight.outputs.changelog }}
121
- draft : false
122
- prerelease : false
114
+ run : gh release create ${{ steps.preflight.outputs.version }}
115
+ --title "Firebase Admin Python SDK ${{ steps.preflight.outputs.version }}"
116
+ --notes "${{ steps.preflight.outputs.changelog }}"
123
117
124
118
- name : Publish to Pypi
125
119
You can’t perform that action at this time.
0 commit comments