This repository was archived by the owner on Aug 31, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed
Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change 9191 SIGNING_STORE_PASSWORD : ${{ secrets.ANDROID_UPLOAD_SIGNING_STORE_PASSWORD }}
9292 ENCODED_KEYSTORE : ${{ secrets.ANDROID_UPLOAD_KEYSTORE }}
9393
94- - name : Upload APK to Github Packages
94+ - name : Upload APK to job
9595 uses : actions/upload-artifact@v3
9696 with :
9797 name : ${{steps.build.outputs.ANDROID_APK_NAME}}
@@ -119,21 +119,14 @@ jobs:
119119 with :
120120 version : ${{ steps.extract-version.outputs.version }}
121121
122- - name : Create tag
123- uses : rickstaa/action-create-tag@v1
124- env :
125- GITHUB_TOKEN : ${{ secrets.TENTENONE_GITHUB_TOKEN }}
126- with :
127- tag : ${{ steps.extract-version.outputs.version }}
128- message : ${{ steps.changelog.outputs.description }}
129-
130122 - uses : actions/download-artifact@v3
131123 with :
132124 name : ${{ needs.build.outputs.ANDROID_APK_NAME }}
133125
134126 - name : Create release
135- uses : softprops/action-gh-release@v1
136- env :
137- GITHUB_TOKEN : ${{ secrets.TENTENONE_GITHUB_TOKEN }}
127+ uses : ncipollo/release-action@v1
138128 with :
139- files : ${{ needs.build.outputs.ANDROID_APK_NAME }}
129+ artifacts : ${{ needs.build.outputs.ANDROID_APK_NAME }}
130+ body : ${{ steps.changelog.outputs.description }}
131+ token : ${{ secrets.TENTENONE_GITHUB_TOKEN }}
132+ tag : ${{ steps.extract-version.outputs.version }}
You can’t perform that action at this time.
0 commit comments