Skip to content

Commit befa123

Browse files
author
uoosef
committed
change upload release method
1 parent aefe6e9 commit befa123

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/release.yaml

+6-7
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,11 @@ jobs:
111111
path: |
112112
${{steps.sign_app.outputs.signedReleaseFile}}
113113
114-
- name: Release with Notes
115-
uses: softprops/action-gh-release@v1
114+
- name: Upload to GitHub Release
115+
uses: svenstaro/upload-release-action@v2
116116
if: github.event_name == 'release'
117117
with:
118-
tag_name: ${{ github.ref }}
119-
files: |
120-
${{steps.sign_app.outputs.signedReleaseFile}}
121-
env:
122-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
118+
repo_token: ${{ secrets.GITHUB_TOKEN }}
119+
file: ${{steps.sign_app.outputs.signedReleaseFile}}
120+
tag: ${{ github.ref }}
121+
overwrite: true

0 commit comments

Comments
 (0)